-
-
Notifications
You must be signed in to change notification settings - Fork 7
105 lines (102 loc) · 2.75 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
name: CI
on:
push:
branches:
- master
pull_request:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For setup-rust
NEXTEST_TEST_THREADS: 3
NEXTEST_RETRIES: 2
PROTO_LOG: trace
jobs:
# format:
# name: Format
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest]
# fail-fast: false
# steps:
# - uses: actions/checkout@v4
# - uses: moonrepo/setup-rust@v1
# with:
# cache: false
# components: rustfmt
# - run: cargo fmt --all --check
# lint:
# name: Lint
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, windows-latest]
# fail-fast: false
# steps:
# - uses: actions/checkout@v4
# - uses: moonrepo/setup-rust@v1
# with:
# cache: false
# components: clippy
# - run: cargo clippy --workspace --all-targets
# test:
# name: Test
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
# fail-fast: false
# steps:
# - uses: actions/checkout@v4
# - uses: moonrepo/setup-rust@v1
# with:
# bins: cargo-nextest
# cache: false # Runs out of disk space
# - uses: moonrepo/setup-toolchain@v0
# with:
# moon-version: latest
# - uses: moonrepo/build-wasm-plugin@v0
# - run: cargo nextest run --no-default-features
plan:
name: Plan
runs-on: ubuntu-latest
outputs:
job-total: ${{ steps.plan.outputs.job-total }}
jobs-array: ${{ steps.plan.outputs.jobs-array }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: moonrepo/setup-toolchain@v0
with:
auto-install: true
- id: plan
run: bash ./scripts/computeCiJobs.sh
ci:
name: Checks
needs:
- plan
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
job: ${{ fromJson(needs.plan.outputs.jobs-array) }}
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: moonrepo/setup-toolchain@v0
with:
auto-install: true
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-nextest
cache: false # Runs out of disk space
components: clippy, rustfmt
targets: wasm32-wasip1
- run: moon ci --color --log debug --job ${{ matrix.job }} --jobTotal ${{ needs.plan.outputs.job-total }}
- uses: moonrepo/run-report-action@v1
if: success() || failure()
with:
access-token: ${{ secrets.GITHUB_TOKEN }}
matrix: ${{ toJSON(matrix) }}