Skip to content

Commit

Permalink
[CI] Update .cirrus.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Sep 27, 2023
1 parent ccb1b33 commit ddaa0f2
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,36 @@
freebsd_instance:
image: freebsd-12-1-release-amd64
task:
name: FreeBSD
env:
matrix:
- JULIA_VERSION: 1.6
- 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 -)"
matrix:
- name: FreeBSD
freebsd_instance:
image_family: freebsd-13-2
env:
matrix:
- JULIA_VERSION: 1.6
- JULIA_VERSION: 1
- name: musl Linux
container:
image: alpine:3.14
env:
- JULIA_VERSION: 1
- name: MacOS M1
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
env:
- JULIA_VERSION: 1
install_script: |
URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
set -x
if [ "$(uname -s)" = "Linux" ] && command -v apt; then
apt update
apt install -y curl
fi
if command -v curl; then
sh -c "$(curl ${URL})"
elif command -v wget; then
sh -c "$(wget ${URL} -q -O-)"
elif command -v fetch; then
sh -c "$(fetch ${URL} -o -)"
fi
build_script:
- cirrusjl build
test_script:
Expand Down

0 comments on commit ddaa0f2

Please sign in to comment.