Skip to content

Commit

Permalink
Create .cirrus.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Aug 2, 2023
1 parent f27e067 commit 8588ac0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
task:
matrix:
- 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:
- cirrusjl test

0 comments on commit 8588ac0

Please sign in to comment.