File tree Expand file tree Collapse file tree 3 files changed +45
-17
lines changed Expand file tree Collapse file tree 3 files changed +45
-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-18.04]
17+ distro : [ubuntu18.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+ install : |
28+ apt-get update -y
29+ apt-get install -y --no-install-recommends python3 python3-pip gnupg
30+ python3 -m pip install --user -U jill
31+ python3 -m jill install ${{ matrix.julia-version }} --confirm --upstream Official
32+ if [ "${{ matrix.julia-version }}" = "nightly" ]; then
33+ ln -L /usr/local/bin/julia-latest /usr/local/bin/julia
34+ fi
35+ run : |
36+ ls -al
37+
38+ # julia -e 'using InteractiveUtils; versioninfo();'
39+ # julia --project=. --check-bounds=yes --color=yes -e 'using Pkg; Pkg.build(); Pkg.test(coverage=true)'
40+ # 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