Skip to content

Commit e5291f0

Browse files
committed
TESTING
1 parent f415c07 commit e5291f0

File tree

1 file changed

+3
-46
lines changed

1 file changed

+3
-46
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -191,52 +191,9 @@ jobs:
191191

192192
- name: ensure the stable version number is correct
193193
run: src/ci/scripts/verify-stable-version-number.sh
194-
195-
- name: run the build
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)] }}
201-
202-
- name: create github artifacts
203-
run: src/ci/scripts/create-doc-artifacts.sh
204-
205-
- name: print disk usage
206-
run: |
207-
echo "disk usage:"
208-
df -h
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'
230-
231-
- name: upload job metrics to DataDog
232-
if: needs.calculate_matrix.outputs.run_type != 'pr'
233-
env:
234-
DATADOG_SITE: datadoghq.com
235-
DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }}
236-
DD_GITHUB_JOB_NAME: ${{ matrix.name }}
237-
run: |
238-
npm install -g @datadog/datadog-ci@^2.x.x
239-
python3 src/ci/scripts/upload-build-metrics.py build/cpu-usage.csv
194+
195+
- name: test link
196+
run: link --version || true
240197

241198
# This job isused to tell bors the final status of the build, as there is no practical way to detect
242199
# when a workflow is successful listening to webhooks only in our current bors implementation (homu).

0 commit comments

Comments
 (0)