Skip to content

Commit

Permalink
Test PRIMA.jl on new platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison authored and emmt committed Oct 16, 2023
1 parent bb5eac1 commit 6747360
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
task:
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:
- cirrusjl test
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.jl.*.cov
*.jl.cov
*.jl.mem
/Manifest.toml
**/Manifest.toml
1 change: 1 addition & 0 deletions gen/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ PRIMA_jll = "eead6e0c-2d5b-5641-a95c-b722de96d551"

[compat]
julia = "1.6"
PRIMA_jll = "0.7.1"

0 comments on commit 6747360

Please sign in to comment.