Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
poteto committed Jul 18, 2024
2 parents 7b6faf8 + 9e53b45 commit e2ed9dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/runtime_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -586,6 +586,10 @@ jobs:
pattern: _build_*
path: build
merge-multiple: true
- name: Scrape warning messages
run: |
mkdir -p ./build/__test_utils__
node ./scripts/print-warnings/print-warnings.js > build/__test_utils__/ReactAllWarnings.js
- name: Display structure of build for PR
run: ls -R build
- name: Restore archived base-build from origin/main
Expand Down
2 changes: 0 additions & 2 deletions scripts/release/download-experimental-build-ghaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ async function getWorkflowRunId(commit) {
`curl -L ${GITHUB_HEADERS} https://github.com/gitapi/repos/${OWNER}/${REPO}/actions/workflows/${getWorkflowId()}/runs?head_sha=${commit}&branch=main&exclude_pull_requests=true`
);

console.log(res);
const json = JSON.parse(res.stdout);
let workflowRun;
if (json.total_count === 1) {
Expand All @@ -95,7 +94,6 @@ async function getArtifact(workflowRunId, artifactName) {
`curl -L ${GITHUB_HEADERS} https://github.com/gitapi/repos/${OWNER}/${REPO}/actions/runs/${workflowRunId}/artifacts?per_page=100&name=${artifactName}`
);

console.log(res);
const json = JSON.parse(res.stdout);
let artifact;
if (json.total_count === 1) {
Expand Down

0 comments on commit e2ed9dc

Please sign in to comment.