forked from MiniMax-AI/minimax-code
-
Notifications
You must be signed in to change notification settings - Fork 0
122 lines (121 loc) · 4.26 KB
/
Copy pathci.yml
File metadata and controls
122 lines (121 loc) · 4.26 KB
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
name: Source verification
# activated on fork: 2026-09-22 — pushing a workflow edit registers workflows on forked repos
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
changes:
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
docs_only: ${{ steps.scope.outputs.docs_only }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
fetch-depth: 0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24"
package-manager-cache: false
- id: scope
run: node scripts/ci-changes.mjs
docs:
needs: changes
if: needs.changes.outputs.docs_only == 'true'
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24"
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm verify --profile docs
env:
MCODE_VERIFY_REPORT_DIR: ${{ runner.temp }}/verification
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
if: ${{ always() }}
with:
name: documentation-verification-${{ github.run_attempt }}
path: ${{ runner.temp }}/verification/
retention-days: 7
verify:
needs: changes
if: needs.changes.outputs.docs_only == 'false'
name: verify (${{ matrix.os }}, ${{ matrix.node }})
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
# Windows runs a focused contract; full capability coverage remains on Linux/macOS.
os: [ubuntu-latest, macos-latest, windows-latest]
node: ["24"]
include:
- os: ubuntu-latest
node: "24"
profile: full
- os: windows-latest
node: "24"
profile: windows
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: pnpm/action-setup@ea17c68df8912ef543352723c149a84f56e3d413 # v6.1.0
with:
version: 9.12.0
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile
# Keep the gate list in the shared verifier. Every OS builds and tests its
# own native artifacts; only the duplicate compiler check is omitted.
- run: pnpm verify --profile ${{ matrix.profile || 'platform' }}
env:
MCODE_VERIFY_REPORT_DIR: ${{ runner.temp }}/verification
- name: Upload verification summary
if: ${{ always() }}
timeout-minutes: 2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: verification-${{ matrix.os }}-node-${{ matrix.node }}-${{ github.run_attempt }}
path: |
${{ runner.temp }}/verification/verification.json
${{ runner.temp }}/verification/verification.md
${{ runner.temp }}/verification/export.json
retention-days: 7
if-no-files-found: warn
verification:
name: verification
if: ${{ always() }}
needs: [changes, docs, verify]
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Require every planned check
env:
CLASSIFICATION: ${{ needs.changes.result }}
DOCS_ONLY: ${{ needs.changes.outputs.docs_only }}
DOCS_RESULT: ${{ needs.docs.result }}
MATRIX_RESULT: ${{ needs.verify.result }}
shell: bash
run: |
test "$CLASSIFICATION" = success
if [ "$DOCS_ONLY" = true ]; then
test "$DOCS_RESULT" = success
test "$MATRIX_RESULT" = skipped
elif [ "$DOCS_ONLY" = false ]; then
test "$MATRIX_RESULT" = success
test "$DOCS_RESULT" = skipped
else
exit 1
fi