-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.cirrus.yml
50 lines (49 loc) · 1.32 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
41
42
43
44
45
46
47
48
49
50
task:
matrix:
- name: FreeBSD
freebsd_instance:
image: freebsd-13-2-release-amd64
env:
matrix:
- 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:
matrix:
- JULIA_VERSION: 1
- JULIA_VERSION: nightly
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} -O-)"
elif command -v fetch; then
sh -c "$(fetch ${URL} -o -)"
else
echo "No downloader installed! :( Install one! :)"
fi
if command -v apk; then
# Install build tools on Alpine Linux
apk update
apk add build-base linux-headers
elif command -v pkg; then
# Install GNU Make on FreeBSD
pkg update
pkg install -y gmake
fi
build_script:
- julia --project=test/ -e 'using Pkg; Pkg.instantiate()'
test_script:
- julia --project=test/ test/runtests.jl