|
89 | 89 | # we do not need. We do this to enable some of the less resource
|
90 | 90 | # intensive jobs to run on free runners, which however also have
|
91 | 91 | # less disk space.
|
92 |
| - - name: free up disk space |
93 |
| - run: src/ci/scripts/free-disk-space.sh |
94 |
| - if: matrix.free_disk |
| 92 | +# - name: free up disk space |
| 93 | +# run: src/ci/scripts/free-disk-space.sh |
| 94 | +# if: matrix.free_disk |
95 | 95 |
|
96 | 96 | # Rust Log Analyzer can't currently detect the PR number of a GitHub
|
97 | 97 | # Actions build on its own, so a hint in the log message is needed to
|
@@ -144,8 +144,8 @@ jobs:
|
144 | 144 | - name: disable git crlf conversion
|
145 | 145 | run: src/ci/scripts/disable-git-crlf-conversion.sh
|
146 | 146 |
|
147 |
| - - name: checkout submodules |
148 |
| - run: src/ci/scripts/checkout-submodules.sh |
| 147 | +# - name: checkout submodules |
| 148 | +# run: src/ci/scripts/checkout-submodules.sh |
149 | 149 |
|
150 | 150 | - name: install MinGW
|
151 | 151 | run: src/ci/scripts/install-mingw.sh
|
@@ -175,11 +175,16 @@ jobs:
|
175 | 175 |
|
176 | 176 | - name: run the build
|
177 | 177 | # Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
|
178 |
| - run: src/ci/scripts/run-build-from-ci.sh 2>&1 |
| 178 | + run: exit 1 |
| 179 | +# src/ci/scripts/run-build-from-ci.sh 2>&1 |
179 | 180 | env:
|
180 | 181 | AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
|
181 | 182 | AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
|
182 | 183 |
|
| 184 | + - name: Print helper link |
| 185 | + if: ${{ failure() }} |
| 186 | + run: echo "https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html" |
| 187 | + |
183 | 188 | - name: create github artifacts
|
184 | 189 | run: src/ci/scripts/create-doc-artifacts.sh
|
185 | 190 |
|
|
0 commit comments