--- 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