File tree Expand file tree Collapse file tree 3 files changed +43
-17
lines changed Expand file tree Collapse file tree 3 files changed +43
-17
lines changed Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- 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
+ githubToken : ${{ github.token }}
27
+ shell : bin/bash
28
+ install : |
29
+ apt-get update
30
+ apt-get install -y --no-install-recommends python3 python3-pip
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