-
Notifications
You must be signed in to change notification settings - Fork 8
198 lines (190 loc) · 5.44 KB
/
ci.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
name: CI
on:
push:
branches: ["main"]
paths:
- "*/src/**"
- "*/Cargo.toml"
- "*/build.rs"
- "Cargo.lock"
- "codecov.yml"
- ".github/workflows/ci.yml"
- ".github/actions/setup/**"
- ".github/actions/install-core/**"
pull_request:
branches: ["main"]
paths:
- "*/src/**"
- "*/Cargo.toml"
- "*/build.rs"
- "Cargo.lock"
- "codecov.yml"
- ".github/workflows/ci.yml"
- ".github/actions/setup/**"
- ".github/actions/install-core/**"
env:
RUST_BACKTRACE: full
CARGO_TERM_COLOR: always
defaults:
run:
shell: bash
jobs:
build:
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-12 # x86_64 runner
- macos-14 # aarch64 runner
- windows-latest
env:
MAA_EXTRA_SHARE_NAME: maa-test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Cache
uses: Swatinem/rust-cache@v2
- name: Build (maa-cli)
run: |
cargo build --package maa-cli --locked
- name: Lint (clippy)
run: |
cargo clippy --package maa-cli -- -D warnings
- name: Lint (rustfmt)
run: |
cargo fmt --package maa-cli -- --check
- name: Install MaaCore
env:
MAA_CONFIG_DIR: ${{ github.workspace }}/maa-cli/config_examples
run: |
cargo run -- install beta
core_dir=$(cargo run -- dir library)
resource_dir=$(cargo run -- dir resource)
cache_dir=$(cargo run -- dir cache)
package_name=$(basename "$cache_dir"/MAA-v*)
version=${package_name#MAA-v}
version=${version%%-linux*}
version=${version%%-macos*}
version=${version%%-win*}
ls -l "$core_dir"
ls -l "$resource_dir"
ls -l "$cache_dir"
echo "Downloaded MaaCore version: $version"
{
echo "MAA_CORE_DIR=$core_dir"
echo "MAA_RESOURCE_DIR=$resource_dir"
echo "MAA_CORE_VERSION=v$version"
} >> "$GITHUB_ENV"
- name: Test
run: |
cargo test -- --include-ignored
build-cross:
name: Cross Build to aarch64
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Cross Compilation Toolchains
uses: ./.github/actions/setup
with:
os: ${{ matrix.os }}
target_arch: aarch64
- name: Build
run: |
cargo build --package maa-cli --locked \
--features vendored-openssl
build-feature:
name: Build and Test (no default features)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14
- windows-latest
feature:
- core_installer # disabled cli_installer and git2, used by package manager
- git2 # disabled both cli_installer and core_installer, used by appimage
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build
run: |
cargo build --package maa-cli --locked \
--no-default-features --features '${{ matrix.feature }}'
- name: Test
env:
SKIP_CORE_TEST: true
run: |
cargo test -- --include-ignored
build-sys:
name: Build and Test (maa-sys, static)
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-12 # x86_64 runner
- macos-14 # aarch64 runner
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install MaaCore
uses: ./.github/actions/install-core
- name: Build
run: cargo build --package maa-sys --locked
- name: Lint (clippy)
run: cargo clippy --package maa-sys -- -D warnings
- name: Lint (fmt)
run: cargo fmt --package maa-sys -- --check
- name: Test
# It seems rust needs a static library to check the linking.
# Without this, we can not link maa-sys to MaaCore on Windows.
# https://stackoverflow.com/questions/63394094/rust-linker-seeks-a-lib-rather-than-a-dll
if: ${{ !startsWith(matrix.os, 'windows') }}
run: cargo test --package maa-sys
coverage:
name: Coverage
needs: [build, build-sys]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14 # aarch64 runner
- windows-latest
env:
MAA_EXTRA_SHARE_NAME: maa-test
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Cargo tarpaulin
uses: taiki-e/install-action@v2
with:
tool: cargo-tarpaulin
- name: Install MaaCore
uses: ./.github/actions/install-core
- name: Setup Cache
uses: Swatinem/rust-cache@v2
- name: Coverage
run: |
cargo tarpaulin --out xml --workspace --timeout 120 \
${{ github.run_attempt == 1 && '--skip-clean' || '' }} \
-- --include-ignored
- name: Upload to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true