File tree Expand file tree Collapse file tree 3 files changed +53
-17
lines changed Expand file tree Collapse file tree 3 files changed +53
-17
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 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+ with :
24+ arch : ${{ matrix.arch }}
25+ distro : ${{ matrix.distro }}
26+ shell : bin/bash
27+ # FIXME
28+ run : |
29+ ls -al
30+
31+ # apt-get update -y
32+ # apt-get install -y --no-install-recommends wget ca-certificates
33+ # case "${{ matrix.julia-version }}" in
34+ # "1.0" )
35+ # wget -nv https://julialang-s3.julialang.org/bin/linux/aarch64/1.0/julia-1.0.5-linux-aarch64.tar.gz
36+ # ;;
37+ # "1" )
38+ # wget -nv https://julialang-s3.julialang.org/bin/linux/aarch64/1.5/julia-1.5.3-linux-aarch64.tar.gz
39+ # ;;
40+ # "nightly" )
41+ # wget -nv https://julialangnightlies-s3.julialang.org/bin/linux/aarch64/julia-latest-linuxaarch64.tar.gz
42+ # ;;
43+ # esac
44+ # tar -xzf julia-*aarch64.tar.gz
45+ # ln julia-*/bin/julia /usr/local/bin/julia
46+ # julia -e 'using InteractiveUtils; versioninfo();'
47+ # julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
48+ # julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit_local(process_folder())'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments