|
2 | 2 | "$schema": "https://turborepo.org/schema.json", |
3 | 3 | "experimentalUI": true, |
4 | 4 | "pipeline": { |
5 | | - "build-native": { |
6 | | - "inputs": [ |
7 | | - "../../.cargo/**", |
8 | | - "../../packages/next-swc/crates/**", |
9 | | - "../../**/Cargo.toml", |
10 | | - "../../**/Cargo.lock", |
11 | | - "../../.github/workflows/build_and_deploy.yml", |
12 | | - "../../rust-toolchain" |
13 | | - ], |
14 | | - "dependsOn": ["^build-native"], |
15 | | - "outputs": ["native/*.node"] |
16 | | - }, |
17 | | - "build-native-release": { |
18 | | - "inputs": [ |
19 | | - "../../.cargo/**", |
20 | | - "../../packages/next-swc/crates/**", |
21 | | - "../../**/Cargo.toml", |
22 | | - "../../**/Cargo.lock", |
23 | | - "../../.github/workflows/build_and_deploy.yml", |
24 | | - "../../rust-toolchain" |
25 | | - ], |
26 | | - "dependsOn": ["^build-native-release"], |
27 | | - "outputs": ["native/*.node"] |
28 | | - }, |
29 | | - "build-native-no-plugin": { |
30 | | - "inputs": [ |
31 | | - "../../.cargo/**", |
32 | | - "../../packages/next-swc/crates/**", |
33 | | - "../../**/Cargo.toml", |
34 | | - "../../**/Cargo.lock", |
35 | | - "../../.github/workflows/build_and_deploy.yml", |
36 | | - "../../rust-toolchain" |
37 | | - ], |
38 | | - "dependsOn": ["^build-native-no-plugin"], |
39 | | - "outputs": ["native/*.node"] |
40 | | - }, |
41 | | - "build-native-no-plugin-woa": { |
42 | | - "inputs": [ |
43 | | - "../../.cargo/**", |
44 | | - "../../packages/next-swc/crates/**", |
45 | | - "../../**/Cargo.toml", |
46 | | - "../../**/Cargo.lock", |
47 | | - "../../.github/workflows/build_and_deploy.yml", |
48 | | - "../../rust-toolchain" |
49 | | - ], |
50 | | - "dependsOn": ["^build-native-no-plugin-woa"], |
51 | | - "outputs": ["native/*.node"] |
52 | | - }, |
53 | | - "build-native-no-plugin-woa-release": { |
54 | | - "inputs": [ |
55 | | - "../../.cargo/**", |
56 | | - "../../packages/next-swc/crates/**", |
57 | | - "../../**/Cargo.toml", |
58 | | - "../../**/Cargo.lock", |
59 | | - "../../.github/workflows/build_and_deploy.yml", |
60 | | - "../../rust-toolchain" |
61 | | - ], |
62 | | - "dependsOn": ["^build-native-no-plugin-woa-release"], |
63 | | - "outputs": ["native/*.node"] |
64 | | - }, |
65 | | - "build-wasm": { |
66 | | - "inputs": [ |
67 | | - "../../.cargo/**", |
68 | | - "../../packages/next-swc/crates/**", |
69 | | - "../../**/Cargo.toml", |
70 | | - "../../**/Cargo.lock", |
71 | | - "../../.github/workflows/build_and_deploy.yml", |
72 | | - "../../rust-toolchain" |
73 | | - ], |
74 | | - "dependsOn": ["^build-wasm"], |
75 | | - "outputs": ["crates/wasm/pkg/*"] |
76 | | - }, |
77 | | - "build-native-wasi": { |
78 | | - "inputs": [ |
79 | | - "../../.cargo/**", |
80 | | - "../../packages/next-swc/crates/**", |
81 | | - "../../**/Cargo.toml", |
82 | | - "../../**/Cargo.lock", |
83 | | - "../../.github/workflows/build_and_deploy.yml", |
84 | | - "../../rust-toolchain" |
85 | | - ], |
86 | | - "dependsOn": ["^build-native-wasi"], |
87 | | - "outputs": ["native/*"] |
88 | | - }, |
89 | | - "cache-build-native": { |
90 | | - "inputs": [ |
91 | | - "../../.cargo/**", |
92 | | - "../../packages/next-swc/crates/**", |
93 | | - "../../**/Cargo.toml", |
94 | | - "../../**/Cargo.lock", |
95 | | - "../../.github/workflows/build_and_deploy.yml", |
96 | | - "../../rust-toolchain" |
97 | | - ], |
98 | | - "dependsOn": ["^cache-build-native"], |
99 | | - "outputs": ["native/*.node"] |
100 | | - }, |
101 | 5 | "build": { |
102 | 6 | "dependsOn": ["^build"], |
103 | 7 | "outputs": ["dist/**"] |
|
108 | 12 | }, |
109 | 13 | "typescript": {}, |
110 | 14 | "//#typescript": {}, |
111 | | - "rust-check": { |
112 | | - "dependsOn": [ |
113 | | - "^rust-check-fmt", |
114 | | - "^rust-check-clippy", |
115 | | - "^rust-check-napi-rustls" |
116 | | - ] |
117 | | - }, |
118 | | - "rust-check-fmt": { |
119 | | - "inputs": [ |
120 | | - "../../.cargo/**", |
121 | | - "../../packages/next-swc/crates/**", |
122 | | - "../../**/Cargo.toml", |
123 | | - "../../**/Cargo.lock", |
124 | | - "../../.github/workflows/build_and_deploy.yml", |
125 | | - "../../rust-toolchain" |
126 | | - ], |
127 | | - "cache": false |
128 | | - }, |
129 | | - "rust-check-clippy": { |
130 | | - "inputs": [ |
131 | | - "../../.cargo/**", |
132 | | - "../../packages/next-swc/crates/**", |
133 | | - "../../**/Cargo.toml", |
134 | | - "../../**/Cargo.lock", |
135 | | - "../../.github/workflows/build_and_deploy.yml", |
136 | | - "../../rust-toolchain" |
137 | | - ] |
138 | | - }, |
139 | | - "rust-check-napi-rustls": { |
140 | | - "inputs": [ |
141 | | - "../../.cargo/**", |
142 | | - "../../packages/next-swc/crates/**", |
143 | | - "../../**/Cargo.toml", |
144 | | - "../../**/Cargo.lock", |
145 | | - "../../.github/workflows/build_and_deploy.yml", |
146 | | - "../../rust-toolchain" |
147 | | - ] |
148 | | - }, |
149 | | - "test-cargo-unit": { |
150 | | - "inputs": [ |
151 | | - "../../.cargo/**", |
152 | | - "../../packages/next-swc/crates/**", |
153 | | - "../../**/Cargo.toml", |
154 | | - "../../**/Cargo.lock", |
155 | | - "../../.github/workflows/build_and_deploy.yml", |
156 | | - "../../rust-toolchain" |
157 | | - ] |
158 | | - }, |
159 | 15 | "//#get-test-timings": { |
160 | 16 | "inputs": ["run-tests.js"], |
161 | 17 | "outputs": ["test-timings.json"] |
|
0 commit comments