-
Notifications
You must be signed in to change notification settings - Fork 1
129 lines (112 loc) · 3.62 KB
/
code.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: code
on:
push:
branches:
- master
pull_request:
schedule:
- cron: "0 20 * * 0"
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
defaults:
run:
shell: bash
jobs:
test:
name: ${{ matrix.rust-toolchain.name }} / ${{ matrix.platform.name }} / ${{ matrix.mode.name }}
runs-on: ${{ matrix.platform.os }}
strategy:
matrix:
rust-toolchain:
- name: stable
allow-fail: false
platform:
- name: Linux
os: ubuntu-latest
cacheKey: ubuntu-latest
buildEnvScript: .github/scripts/build_env/linux.sh
env: {}
experimental: false
- name: Windows
os: windows-latest
cacheKey: windows-latest
buildEnvScript: .github/scripts/build_env/windows.sh
env:
CARGO_INCREMENTAL: "0"
experimental: false
mode:
- name: clippy
cargoCommand: clippy
cargoArgs: --workspace -- -D warnings
- name: test
cargoCommand: test
cargoArgs: --workspace
- name: build
cargoCommand: build
cargoArgs: --workspace
fail-fast: false
continue-on-error: ${{ matrix.platform.experimental || matrix.rust-toolchain.allow-fail }}
env: ${{ matrix.platform.env }}
steps:
- name: Job config
run: echo "$MATRIX_CONTEXT"
env:
MATRIX_CONTEXT: ${{ toJson(matrix) }}
- name: Checkout
uses: actions/checkout@v3
- uses: ./.github/actions/common-setup
with:
platformCacheKey: ${{ matrix.platform.cacheKey }}
buildEnvScript: ${{ matrix.platform.buildEnvScript }}
timeout-minutes: 10
- name: Run cargo ${{ matrix.mode.cargoCommand }}
uses: actions-rs/cargo@v1
with:
command: ${{ matrix.mode.cargoCommand }}
args: ${{ matrix.mode.cargoArgs }}
package:
name: stable / ${{ matrix.platform.name }} / package
runs-on: ${{ matrix.platform.os }}
strategy:
matrix:
platform:
- name: Windows
os: windows-latest
packagingEnvScript: .github/scripts/packaging_env/windows.sh
packagingScript: .github/scripts/packaging/windows.sh
env:
CARGO_INCREMENTAL: "0"
experimental: false
- name: Linux
os: ubuntu-latest
packagingEnvScript: .github/scripts/packaging_env/linux.sh
packagingScript: .github/scripts/packaging/linux.sh
env: {}
experimental: false
fail-fast: false
env: ${{ matrix.platform.env }}
steps:
- name: Job config
run: echo "$MATRIX_CONTEXT"
env:
MATRIX_CONTEXT: ${{ toJson(matrix) }}
- name: Checkout
uses: actions/checkout@v3
- uses: ./.github/actions/common-setup
with:
platformCacheKey: ${{ matrix.platform.cacheKey }}
buildEnvScript: ${{ matrix.platform.packagingEnvScript }}
timeout-minutes: 10
- name: Run cargo build (release)
uses: actions-rs/cargo@v1
with:
command: build
args: --release --workspace
- name: Do the packaging
run: ${{ matrix.platform.packagingScript }} "${{ github.workspace }}/target/artifacts"
- name: Upload packaged artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.platform.name }} Build
path: ${{ github.workspace }}/target/artifacts