File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+ - uses : uraimo/run-on-arch-action@v2.0.7
23+ with :
24+ arch : ${{ matrix.arch }}
25+ distro : ${{ matrix.distro }}
26+ githubToken : ${{ github.token }}
27+ shell : bin/bash
28+ install : |
29+ apt-get update
30+ apt-get install -y --no-install-recommends python3 python3-pip gnupg
31+ python3 -m pip install --user -U jill
32+ python3 -m jill install ${{ matrix.julia-version }} --confirm --upstream Official
33+ if [ "${{ matrix.julia-version }}" = "nightly" ]; then
34+ ln -L /usr/local/bin/julia-latest /usr/local/bin/julia
35+ fi
36+ run : |
37+ julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(); using Pkg; Pkg.build(); Pkg.test(coverage=true)'
38+ 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