Skip to content

Commit

Permalink
Use Cirrus also for Aarch64 CI (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano authored Oct 10, 2022
1 parent 50b7574 commit 9ae1b7c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 137 deletions.
30 changes: 24 additions & 6 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
freebsd_instance:
image: freebsd-13-0-release-amd64
task:
name: FreeBSD
matrix:
- name: FreeBSD
freebsd_instance:
image_family: freebsd-13-1
- name: Linux ARMv8
arm_container:
image: ubuntu:latest
env:
matrix:
- JULIA_VERSION: 1.3
Expand All @@ -12,11 +16,25 @@ task:
- JULIA_VERSION: 1
- JULIA_VERSION: nightly
allow_failures: $JULIA_VERSION == 'nightly'
install_script:
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"
install_script: |
URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
set -x
if command -v apt; then
apt update
apt install -y curl
fi
if [ ! -z "$(which curl)" ]; then
sh -c "$(curl ${URL})"
elif [ ! -z "$(which wget)" ]; then
sh -c "$(wget ${URL} -O-)"
elif command -v fetch; then
sh -c "$(fetch ${URL} -o -)"
else
echo "No downloader installed! :( Install one! :)"
fi
build_script:
- cirrusjl build
test_script:
- cirrusjl test
coverage_script:
- cirrusjl coverage codecov coveralls
- cirrusjl coverage codecov
30 changes: 0 additions & 30 deletions .drone.jsonnet

This file was deleted.

101 changes: 0 additions & 101 deletions .drone.yml

This file was deleted.

0 comments on commit 9ae1b7c

Please sign in to comment.