Skip to content

Commit e68f6fa

Browse files
committed
WIP
1 parent 672e3aa commit e68f6fa

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/ci.yml

+11-6
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ jobs:
8989
# we do not need. We do this to enable some of the less resource
9090
# intensive jobs to run on free runners, which however also have
9191
# 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
9595

9696
# Rust Log Analyzer can't currently detect the PR number of a GitHub
9797
# Actions build on its own, so a hint in the log message is needed to
@@ -144,8 +144,8 @@ jobs:
144144
- name: disable git crlf conversion
145145
run: src/ci/scripts/disable-git-crlf-conversion.sh
146146

147-
- name: checkout submodules
148-
run: src/ci/scripts/checkout-submodules.sh
147+
# - name: checkout submodules
148+
# run: src/ci/scripts/checkout-submodules.sh
149149

150150
- name: install MinGW
151151
run: src/ci/scripts/install-mingw.sh
@@ -175,11 +175,16 @@ jobs:
175175

176176
- name: run the build
177177
# 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
179180
env:
180181
AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
181182
AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
182183

184+
- name: Print helper link
185+
if: ${{ failure() }}
186+
run: echo "https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html"
187+
183188
- name: create github artifacts
184189
run: src/ci/scripts/create-doc-artifacts.sh
185190

0 commit comments

Comments
 (0)