Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
usmanmani1122 committed Mar 1, 2025
1 parent cb63506 commit 716ecec
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ jobs:
# run: cd packages/deployment && ./scripts/test-docker-build.sh | $TEST_COLLECT
# XXX skip TAP test output and collection for now; it hides the output from the logs
run: make docker-build-sdk
working-directory: ./agoric-sdk/packages/deployment
working-directory: agoric-sdk/packages/deployment

- uses: ./agoric-sdk/.github/actions/restore-node
with:
node-version: '18.x'
Expand All @@ -275,7 +276,7 @@ jobs:
id: restore-node
- name: setup a3p-integration
run: yarn install
working-directory: ./agoric-sdk/a3p-integration
working-directory: agoric-sdk/a3p-integration
- name: verify SDK image didn't change
# In the future when we can rebuild the SDK image with resolved endo packages, it would
# be expected that the SDK image previously built has changed
Expand All @@ -288,7 +289,7 @@ jobs:
echo "New SDK docker image ($new) changed after restore-node (original $original)" 1>&2
exit 1
fi
working-directory: ./agoric-sdk/a3p-integration
working-directory: agoric-sdk/a3p-integration

- id: build-cosmic-swingset
name: Build cosmic-swingset dependencies
Expand All @@ -297,7 +298,7 @@ jobs:
yarn install
make --directory packages/cosmic-swingset all
working-directory: ./agoric-sdk
working-directory: agoric-sdk

- id: get-loadgen-branch
name: Get the appropriate loadgen branch
Expand Down Expand Up @@ -332,7 +333,7 @@ jobs:
cd runner
yarn install
working-directory: ./${{ env.LOADGEN_REPO_NAME }}
working-directory: ${{ env.LOADGEN_REPO_NAME }}

- id: add-loadgen-path-to-env
name: Add loadgen path to env
Expand All @@ -344,19 +345,19 @@ jobs:
- name: build proposals tests
run: yarn build
working-directory: ./agoric-sdk/a3p-integration
working-directory: agoric-sdk/a3p-integration

- name: run proposals tests
run: yarn test
working-directory: ./agoric-sdk/a3p-integration
working-directory: agoric-sdk/a3p-integration

- name: copy a3p-integration
if: (success() || failure())
run: |
dir='/tmp/export/a3p-integration'
rm -rf "$dir"
scripts/ci/export-a3p.sh a3p-integration "$dir"
working-directory: ./agoric-sdk
working-directory: agoric-sdk

# Artifacts can be found at the bottom of `Summary` page of
# `Integration tests` workflow once the workflow is completed.
Expand Down Expand Up @@ -386,7 +387,7 @@ jobs:
from: ${{ secrets.NOTIFY_EMAIL_FROM }}
to: ${{ secrets.NOTIFY_EMAIL_TO }}
password: ${{ secrets.NOTIFY_EMAIL_PASSWORD }}
- uses: ./.github/actions/post-test
- uses: ./agoric-sdk/.github/actions/post-test
if: (success() || failure())
continue-on-error: true
timeout-minutes: 4
Expand Down

0 comments on commit 716ecec

Please sign in to comment.