-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.cirrus.yml
40 lines (40 loc) · 1.01 KB
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
task:
matrix:
- name: FreeBSD
freebsd_instance:
image_family: freebsd-13-1
- name: Linux ARMv8
arm_container:
image: ubuntu:latest
env:
matrix:
- JULIA_VERSION: 1.3
- JULIA_VERSION: 1.4
- JULIA_VERSION: 1.5
- JULIA_VERSION: 1.6
- JULIA_VERSION: 1.7
- JULIA_VERSION: 1
- JULIA_VERSION: nightly
allow_failures: $JULIA_VERSION == 'nightly'
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