Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/scripts/test-merge-candidate-workflows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,10 @@ for workflow in "$STAGING_WORKFLOW" "$PREPARE"; do
grep -Fq 'run: bash scripts/dev-shell.sh npm ci --no-audit --no-fund' \
<<<"$root_install_step" ||
fail "$(basename "$workflow") materialization validation must install the root esbuild dependency"
materialization_step="$(step_block "$workflow" "Test binary materialization flow")"
grep -Fq 'bash scripts/dev-shell.sh bash scripts/build-fork-instrument-tool.sh' \
<<<"$materialization_step" ||
fail "$(basename "$workflow") materialization validation must build the fork contract inventory tool"
done

grep -Fq 'cleanup-merge-candidates.sh' "$CLEANUP_WORKFLOW" || \
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/prepare-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1335,6 +1335,10 @@ jobs:
- name: Test binary materialization flow
if: env.BINARY_MATERIALIZATION_CHANGED == 'true'
run: |
# WHY: artifact-guard integration tests query the ABI 43 binary
# contract inventory. This source-only job does not download the
# package-toolchain artifact, so prepare its host tool explicitly.
bash scripts/dev-shell.sh bash scripts/build-fork-instrument-tool.sh
bash scripts/dev-shell.sh npx --prefix host vitest run --root . tests/package-system

test-suite-early:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/staging-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -852,6 +852,10 @@ jobs:
- name: Test binary materialization flow
if: env.BINARY_MATERIALIZATION_CHANGED == 'true'
run: |
# WHY: artifact-guard integration tests query the ABI 43 binary
# contract inventory. This source-only job does not download the
# package-toolchain artifact, so prepare its host tool explicitly.
bash scripts/dev-shell.sh bash scripts/build-fork-instrument-tool.sh
bash scripts/dev-shell.sh npx --prefix host vitest run --root . tests/package-system

test-suite-early:
Expand Down
5 changes: 3 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading