File tree 3 files changed +35
-69
lines changed
3 files changed +35
-69
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ jobs:
19
19
fail-fast : false
20
20
matrix :
21
21
version :
22
- - ' 1.6'
22
+ # - '1.6'
23
23
- ' 1'
24
24
- ' nightly'
25
25
os :
26
26
- ubuntu-latest
27
- - windows-latest
27
+ # - windows-latest
28
28
arch :
29
29
- x64
30
- - x86
30
+ # - x86
31
31
steps :
32
32
- uses : actions/checkout@v3
33
33
- uses : julia-actions/setup-julia@v1
You can’t perform that action at this time.
0 commit comments