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
Peter Kurfer 3b6b2dea2a
Some checks reported errors
continuous-integration/drone/push Build was killed
fix: install which to CI
2023-08-23 23:49:44 +02:00

46 lines
664 B
YAML

---
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:
- dnf install -y which rsync
- bash -e -x ./setup.sh
---
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:
- dnf install -y which rsync
- bash -e -x ./setup.sh