Skip to content

Commit

Permalink
Merge pull request #8116 from Agoric/mfig-disable-zoe-full-upgrade
Browse files Browse the repository at this point in the history
ci(upgrade-test): bypass zoe-full-upgrade with hardcoded bundleIDs
  • Loading branch information
michaelfig authored and mhofman committed Aug 7, 2023
2 parents b5692cb + 18920e6 commit dbae0f3
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test-all-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -712,6 +712,17 @@ jobs:
matrix:
bootstrap-version: ['test', 'main']
steps:
- name: free up additional worker space
run: |
# Workaround to provide additional free space for testing.
# https://github.com/actions/virtual-environments/issues/2840
df -h
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
- uses: actions/checkout@v3
- name: docker build (sdk)
run: cd packages/deployment && ./scripts/test-docker-build.sh | $TEST_COLLECT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
# CWD is agoric-sdk
upgrade11=./upgrade-test-scripts/agoric-upgrade-11

######################################################################
# FIXME: remove this line when these tests don't hardcode bundle hashes.
echo 1>&2 "FIXME: skipping zoe-full-upgrade tests"; return 0

# Pre-steps:
# * fill Wallets
# * build and install bundles
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ waitForBlock 2
upgrade11=./upgrade-test-scripts/agoric-upgrade-11

# zoe vat is at incarnation 1
echo "FIXME: bypassed zoe-full-upgrade validation"; return 0
test_val "$(yarn --silent node $upgrade11/vat-status.mjs zoe)" "1" "zoe vat incarnation"

0 comments on commit dbae0f3

Please sign in to comment.