Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .cirrus.yml #325

Merged
merged 3 commits into from
Apr 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ task:
matrix:
- name: FreeBSD
freebsd_instance:
image_family: freebsd-13-1
image_family: freebsd-13-2
env:
matrix:
- JULIA_VERSION: 1.6
Expand All @@ -13,14 +13,15 @@ task:
env:
- JULIA_VERSION: 1
install_script: |
if [ "$(uname -s)" = "FreeBSD" ]; then
export IGNORE_OSVERSION=yes
echo "FETCH_RETRY = 6" >> /usr/local/etc/pkg.conf
pkg update
pkg install -y lang/gcc git bash
fi
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 [ "$(uname -s)" = "FreeBSD" ]; then
pkg install -y lang/gcc git bash
fi
if command -v curl; then
sh -c "$(curl ${URL})"
elif command -v wget; then
Expand Down
Loading