Skip to content

Commit

Permalink
chore(deployment): test upgrade-12 does not have core proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
mhofman committed Nov 8, 2023
1 parent 8e1eadc commit 3dda414
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
3 changes: 1 addition & 2 deletions packages/deployment/upgrade-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ ARG BOOTSTRAP_MODE=main

# UPGRADE
FROM ${BASE_IMAGE} as propose-agoric-upgrade-12
# TODO: Replace with actual Zoe core proposal for upgrade 12 (MCS, Kread, Zoe, restart-contracts, etc)
ARG BOOTSTRAP_MODE UPGRADE_INFO_12='{"coreProposals":["@agoric/builders/scripts/vats/init-network.js"]}'
ARG BOOTSTRAP_MODE UPGRADE_INFO_12
ENV THIS_NAME= UPGRADE_TO=agoric-upgrade-12 UPGRADE_INFO=${UPGRADE_INFO_12} BOOTSTRAP_MODE=${BOOTSTRAP_MODE}

WORKDIR /usr/src/agoric-sdk/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava';
import { getIncarnation } from './tools/vat-status.js';

test.failing(`verify Zoe vat incarnation`, async t => {
test.skip(`verify Zoe vat incarnation`, async t => {
const incarantion = await getIncarnation('zoe');
t.is(incarantion, 1);
});
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ test(`Ensure Zoe Vat is at 0`, async t => {
t.is(incarnation, 0);
});

test('Ensure Network Vat is at 0', async t => {
const incarnation = await getIncarnation('network');
t.is(incarnation, 0);
});

test('Ensure MaxBytes param was updated', async t => {
const { value: rawParams } = await agd.query(
'params',
Expand Down

0 comments on commit 3dda414

Please sign in to comment.