Skip to content

Commit 8d54273

Browse files
committed
111
1 parent 85318ab commit 8d54273

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

.github/workflows/ci.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -44,43 +44,43 @@ jobs:
4444
# run: pnpm typecheck
4545

4646
# 2. 构建与测试阶段:Build & Test (Matrix OS)
47-
build-test:
48-
name: Build & Test
49-
needs: check
50-
runs-on: ${{ matrix.os }}
51-
strategy:
52-
matrix:
53-
os: [ubuntu-latest, macos-latest, windows-latest]
54-
steps:
55-
- uses: actions/checkout@v4
47+
# build-test:
48+
# name: Build & Test
49+
# needs: check
50+
# runs-on: ${{ matrix.os }}
51+
# strategy:
52+
# matrix:
53+
# os: [ubuntu-latest, macos-latest, windows-latest]
54+
# steps:
55+
# - uses: actions/checkout@v4
5656

57-
# Setup Rust
58-
- name: Install Rust
59-
uses: dtolnay/rust-toolchain@nightly
60-
with:
61-
targets: wasm32-wasip2
57+
# # Setup Rust
58+
# - name: Install Rust
59+
# uses: dtolnay/rust-toolchain@nightly
60+
# with:
61+
# targets: wasm32-wasip2
6262

63-
# Setup Node/pnpm
64-
- uses: pnpm/action-setup@v4
65-
- uses: actions/setup-node@v4
66-
with:
67-
node-version: 20
68-
cache: 'pnpm'
63+
# # Setup Node/pnpm
64+
# - uses: pnpm/action-setup@v4
65+
# - uses: actions/setup-node@v4
66+
# with:
67+
# node-version: 20
68+
# cache: 'pnpm'
6969

70-
# Install Dependencies
71-
- name: Install TS Dependencies
72-
run: pnpm install
70+
# # Install Dependencies
71+
# - name: Install TS Dependencies
72+
# run: pnpm install
7373

74-
# Rust Build & Test (包括 WASM)
75-
- name: Rust Build
76-
run: cargo build --verbose
77-
- name: Rust Test
78-
run: cargo test --verbose
79-
- name: Build WASM Target
80-
run: cargo build -p hxo-target-wasm --target wasm32-wasip2 --release
74+
# # Rust Build & Test (包括 WASM)
75+
# - name: Rust Build
76+
# run: cargo build --verbose
77+
# - name: Rust Test
78+
# run: cargo test --verbose
79+
# - name: Build WASM Target
80+
# run: cargo build -p hxo-target-wasm --target wasm32-wasip2 --release
8181

82-
# TS Build & Test (直接使用同环境构建出的 WASM)
83-
- name: TS Build
84-
run: pnpm build
85-
- name: TS Test
86-
run: pnpm test
82+
# # TS Build & Test (直接使用同环境构建出的 WASM)
83+
# - name: TS Build
84+
# run: pnpm build
85+
# - name: TS Test
86+
# run: pnpm test

0 commit comments

Comments
 (0)