File tree Expand file tree Collapse file tree 4 files changed +71
-26
lines changed Expand file tree Collapse file tree 4 files changed +71
-26
lines changed Original file line number Diff line number Diff line change 11name : TagBot
22on :
3- schedule :
4- - cron : 0 * * * *
3+ issue_comment :
4+ types :
5+ - created
6+ workflow_dispatch :
57jobs :
68 TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710 runs-on : ubuntu-latest
811 steps :
912 - uses : JuliaRegistries/TagBot@v1
Original file line number Diff line number Diff line change @@ -3,12 +3,13 @@ name: Unit test
33on :
44 create :
55 tags :
6- push :
7- branches :
8- - master
9- pull_request :
10- schedule :
11- - cron : ' 20 00 1 * *'
6+ # FIXME: temporarily commenting out
7+ # push:
8+ # branches:
9+ # - master
10+ # pull_request:
11+ # schedule:
12+ # - cron: '20 00 1 * *'
1213
1314jobs :
1415 test :
3839 env :
3940 cache-name : cache-artifacts
4041 with :
41- path : ~/.julia/artifacts
42+ path : ~/.julia/artifacts
4243 key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
4344 restore-keys : |
4445 ${{ runner.os }}-test-${{ env.cache-name }}-
5152 - uses : codecov/codecov-action@v1
5253 with :
5354 file : lcov.info
54-
55-
Original file line number Diff line number Diff line change 1+ name : Unit test for Arm
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ workflow_dispatch :
9+ jobs :
10+ test :
11+ runs-on : ${{ matrix.os }}
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ julia-version : ['1.0', '1', 'nightly']
16+ os : [ubuntu-20.04]
17+ distro : [ubuntu20.04]
18+ arch : [aarch64]
19+
20+ steps :
21+ - uses : actions/checkout@v2
22+
23+ - name : Download Julia Binary
24+ # FIXME
25+ run : |
26+ cd /tmp
27+ case "${{ matrix.julia-version }}" in
28+ "1.0" )
29+ wget -nv https://julialang-s3.julialang.org/bin/linux/aarch64/1.0/julia-1.0.5-linux-aarch64.tar.gz
30+ ;;
31+ "1" )
32+ wget -nv https://julialang-s3.julialang.org/bin/linux/aarch64/1.5/julia-1.5.3-linux-aarch64.tar.gz
33+ ;;
34+ "nightly" )
35+ wget -nv https://julialangnightlies-s3.julialang.org/bin/linux/aarch64/julia-latest-linuxaarch64.tar.gz
36+ ;;
37+ esac
38+ tar -xzf julia-*aarch64.tar.gz -C /home/runner/work/
39+ mv /home/runner/work/julia-*/ /home/runner/work/julia/
40+ rm julia-*aarch64.tar.gz
41+ 42+ name : Unit Test
43+ with :
44+ arch : ${{ matrix.arch }}
45+ distro : ${{ matrix.distro }}
46+ dockerRunArgs : |
47+ -v "/home/runner/work/julia:/home/runner/work/julia"
48+ install : |
49+ ln -s /home/runner/work/julia/bin/julia /usr/local/bin/julia
50+ echo /home/runner/work/julia/lib > /etc/ld.so.conf.d/julia.conf
51+
52+ run : |
53+ julia -e 'using InteractiveUtils; versioninfo();'
54+ julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
55+ - uses : julia-actions/julia-processcoverage@v1
56+ - uses : codecov/codecov-action@v1
57+ with :
58+ file : lcov.info
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments