|
19 | 19 | - name: Rustfmt
|
20 | 20 | run: |
|
21 | 21 | cargo fmt --check
|
22 |
| - rustfmt --check build_system/mod.rs |
| 22 | + rustfmt --check build_system/main.rs |
23 | 23 | rustfmt --check example/*
|
24 | 24 |
|
25 | 25 |
|
@@ -91,21 +91,21 @@ jobs:
|
91 | 91 | sudo apt-get install -y gcc-s390x-linux-gnu qemu-user
|
92 | 92 |
|
93 | 93 | - name: Prepare dependencies
|
94 |
| - run: ./y.rs prepare |
| 94 | + run: ./y.sh prepare |
95 | 95 |
|
96 | 96 | - name: Build without unstable features
|
97 | 97 | env:
|
98 | 98 | TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
|
99 | 99 | # This is the config rust-lang/rust uses for builds
|
100 |
| - run: ./y.rs build --no-unstable-features |
| 100 | + run: ./y.sh build --no-unstable-features |
101 | 101 |
|
102 | 102 | - name: Build
|
103 |
| - run: ./y.rs build --sysroot none |
| 103 | + run: ./y.sh build --sysroot none |
104 | 104 |
|
105 | 105 | - name: Test
|
106 | 106 | env:
|
107 | 107 | TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
|
108 |
| - run: ./y.rs test |
| 108 | + run: ./y.sh test |
109 | 109 |
|
110 | 110 |
|
111 | 111 | bench:
|
@@ -135,13 +135,13 @@ jobs:
|
135 | 135 | run: cargo install hyperfine || true
|
136 | 136 |
|
137 | 137 | - name: Prepare dependencies
|
138 |
| - run: ./y.rs prepare |
| 138 | + run: ./y.sh prepare |
139 | 139 |
|
140 | 140 | - name: Build
|
141 |
| - run: CI_OPT=1 ./y.rs build --sysroot none |
| 141 | + run: CI_OPT=1 ./y.sh build --sysroot none |
142 | 142 |
|
143 | 143 | - name: Benchmark
|
144 |
| - run: CI_OPT=1 ./y.rs bench |
| 144 | + run: CI_OPT=1 ./y.sh bench |
145 | 145 |
|
146 | 146 |
|
147 | 147 | dist:
|
@@ -194,13 +194,13 @@ jobs:
|
194 | 194 | sudo apt-get install -y gcc-mingw-w64-x86-64 wine-stable
|
195 | 195 |
|
196 | 196 | - name: Prepare dependencies
|
197 |
| - run: ./y.rs prepare |
| 197 | + run: ./y.sh prepare |
198 | 198 |
|
199 | 199 | - name: Build backend
|
200 |
| - run: CI_OPT=1 ./y.rs build --sysroot none |
| 200 | + run: CI_OPT=1 ./y.sh build --sysroot none |
201 | 201 |
|
202 | 202 | - name: Build sysroot
|
203 |
| - run: CI_OPT=1 ./y.rs build |
| 203 | + run: CI_OPT=1 ./y.sh build |
204 | 204 |
|
205 | 205 | - name: Package prebuilt cg_clif
|
206 | 206 | run: tar cvfJ cg_clif.tar.xz dist
|
|
0 commit comments