This repository has been archived on 2023-11-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles.old/.drone.yml

47 lines
664 B
YAML
Raw Normal View History

2023-08-23 20:11:17 +00:00
---
kind: pipeline
type: docker
name: arm64-docker
platform:
os: linux
arch: arm64
trigger:
refs:
include:
- refs/heads/main
- refs/pull/**
- refs/tags/**
steps:
- name: Validate setup.sh
image: docker.io/fedora:38
commands:
2023-08-23 21:49:26 +00:00
- dnf install -y which rsync
2023-08-23 20:36:38 +00:00
- bash -e -x ./setup.sh
2023-08-23 20:11:17 +00:00
---
kind: pipeline
type: docker
name: amd64-docker
platform:
os: linux
arch: amd64
trigger:
refs:
include:
- refs/heads/main
- refs/pull/**
- refs/tags/**
steps:
- name: Validate setup.sh
image: docker.io/fedora:38
commands:
2023-08-23 21:49:26 +00:00
- dnf install -y which rsync
2023-08-23 20:36:38 +00:00
- bash -e -x ./setup.sh
2023-08-23 20:22:33 +00:00