Skip to content

Commit

Permalink
feat: cirrus ci support for devel pipelines (#18)
Browse files Browse the repository at this point in the history
it replaces github actions for building the amd64/arm64 images and testing them on Cirrus Linux native containers.
https://cirrus-ci.org/guide/linux/
  • Loading branch information
joseluisq committed Oct 30, 2022
1 parent c92c868 commit af9d30a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 124 deletions.
24 changes: 24 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
task:
only_if: $CIRRUS_TAG == ''
timeout_in: 120m
matrix:
- name: linux-amd64
compute_engine_instance:
image_project: cirrus-images
image: family/docker-builder
platform: linux
cpu: 8
memory: 8G

- name: linux-arm64
compute_engine_instance:
image_project: cirrus-images
image: family/docker-builder-arm64
architecture: arm64
platform: linux
cpu: 4
memory: 4G

script:
- docker build -t joseluisq/rust-linux-darwin-builder:latest -f Dockerfile .
- docker run --rm -v $PWD:/root/src joseluisq/rust-linux-darwin-builder:latest bash -c 'set -eu; make test-ci'
124 changes: 0 additions & 124 deletions .github/workflows/devel.yml

This file was deleted.

0 comments on commit af9d30a

Please sign in to comment.