@@ -192,12 +192,12 @@ jobs:
192
192
- name : ensure the stable version number is correct
193
193
run : src/ci/scripts/verify-stable-version-number.sh
194
194
195
- - name : run the build
195
+ # - name: run the build
196
196
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
197
- run : src/ci/scripts/run-build-from-ci.sh 2>&1
198
- env :
199
- AWS_ACCESS_KEY_ID : ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
200
- AWS_SECRET_ACCESS_KEY : ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
197
+ # run: src/ci/scripts/run-build-from-ci.sh 2>&1
198
+ # env:
199
+ # AWS_ACCESS_KEY_ID: ${{ env.CACHES_AWS_ACCESS_KEY_ID }}
200
+ # AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.CACHES_AWS_ACCESS_KEY_ID)] }}
201
201
202
202
- name : create github artifacts
203
203
run : src/ci/scripts/create-doc-artifacts.sh
@@ -207,26 +207,26 @@ jobs:
207
207
echo "disk usage:"
208
208
df -h
209
209
210
- - name : upload artifacts to github
211
- uses : actions/upload-artifact@v4
212
- with :
213
- # name is set in previous step
214
- name : ${{ env.DOC_ARTIFACT_NAME }}
215
- path : obj/artifacts/doc
216
- if-no-files-found : ignore
217
- retention-days : 5
218
-
219
- - name : upload artifacts to S3
220
- run : src/ci/scripts/upload-artifacts.sh
221
- env :
222
- AWS_ACCESS_KEY_ID : ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}
223
- AWS_SECRET_ACCESS_KEY : ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}
224
- # Adding a condition on DEPLOY=1 or DEPLOY_ALT=1 is not needed as all deploy
225
- # builders *should* have the AWS credentials available. Still, explicitly
226
- # adding the condition is helpful as this way CI will not silently skip
227
- # deploying artifacts from a dist builder if the variables are misconfigured,
228
- # erroring about invalid credentials instead.
229
- if : github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
210
+ # - name: upload artifacts to github
211
+ # uses: actions/upload-artifact@v4
212
+ # with:
213
+ # # name is set in previous step
214
+ # name: ${{ env.DOC_ARTIFACT_NAME }}
215
+ # path: obj/artifacts/doc
216
+ # if-no-files-found: ignore
217
+ # retention-days: 5
218
+ #
219
+ # - name: upload artifacts to S3
220
+ # run: src/ci/scripts/upload-artifacts.sh
221
+ # env:
222
+ # AWS_ACCESS_KEY_ID: ${{ env.ARTIFACTS_AWS_ACCESS_KEY_ID }}
223
+ # AWS_SECRET_ACCESS_KEY: ${{ secrets[format('AWS_SECRET_ACCESS_KEY_{0}', env.ARTIFACTS_AWS_ACCESS_KEY_ID)] }}
224
+ # # Adding a condition on DEPLOY=1 or DEPLOY_ALT=1 is not needed as all deploy
225
+ # # builders *should* have the AWS credentials available. Still, explicitly
226
+ # # adding the condition is helpful as this way CI will not silently skip
227
+ # # deploying artifacts from a dist builder if the variables are misconfigured,
228
+ # # erroring about invalid credentials instead.
229
+ # if: github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
230
230
231
231
- name : upload job metrics to DataDog
232
232
if : needs.calculate_matrix.outputs.run_type != 'pr'
0 commit comments