Skip to content

Commit 7ee9790

Browse files
committed
Update CI to only test on Linux
1 parent d137b73 commit 7ee9790

File tree

3 files changed

+35
-69
lines changed

3 files changed

+35
-69
lines changed

.appveyor.yml

-34
This file was deleted.

.cirrus.yml

+32-32
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
task:
2-
matrix:
3-
- name: FreeBSD
4-
freebsd_instance:
5-
image_family: freebsd-13-2
6-
env:
7-
matrix:
8-
- JULIA_VERSION: 1.6
9-
- JULIA_VERSION: 1
10-
- name: MacOS M1
11-
macos_instance:
12-
image: ghcr.io/cirruslabs/macos-monterey-base:latest
13-
env:
14-
- JULIA_VERSION: 1
15-
install_script: |
16-
URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
17-
set -x
18-
if [ "$(uname -s)" = "Linux" ] && command -v apt; then
19-
apt update
20-
apt install -y curl
21-
fi
22-
if command -v curl; then
23-
sh -c "$(curl ${URL})"
24-
elif command -v wget; then
25-
sh -c "$(wget ${URL} -q -O-)"
26-
elif command -v fetch; then
27-
sh -c "$(fetch ${URL} -o -)"
28-
fi
29-
build_script:
30-
- cirrusjl build
31-
test_script:
32-
- cirrusjl test
1+
# task:
2+
# matrix:
3+
# - name: FreeBSD
4+
# freebsd_instance:
5+
# image_family: freebsd-13-2
6+
# env:
7+
# matrix:
8+
# - JULIA_VERSION: 1.6
9+
# - JULIA_VERSION: 1
10+
# - name: MacOS M1
11+
# macos_instance:
12+
# image: ghcr.io/cirruslabs/macos-monterey-base:latest
13+
# env:
14+
# - JULIA_VERSION: 1
15+
# install_script: |
16+
# URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
17+
# set -x
18+
# if [ "$(uname -s)" = "Linux" ] && command -v apt; then
19+
# apt update
20+
# apt install -y curl
21+
# fi
22+
# if command -v curl; then
23+
# sh -c "$(curl ${URL})"
24+
# elif command -v wget; then
25+
# sh -c "$(wget ${URL} -q -O-)"
26+
# elif command -v fetch; then
27+
# sh -c "$(fetch ${URL} -o -)"
28+
# fi
29+
# build_script:
30+
# - cirrusjl build
31+
# test_script:
32+
# - cirrusjl test

.github/workflows/CI.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
version:
22-
- '1.6'
22+
# - '1.6'
2323
- '1'
2424
- 'nightly'
2525
os:
2626
- ubuntu-latest
27-
- windows-latest
27+
# - windows-latest
2828
arch:
2929
- x64
30-
- x86
30+
# - x86
3131
steps:
3232
- uses: actions/checkout@v3
3333
- uses: julia-actions/setup-julia@v1

0 commit comments

Comments
 (0)