From a0d776a11f2f11743941676a94e4d0d0e55c092d Mon Sep 17 00:00:00 2001 From: David de Kloet Date: Mon, 3 Feb 2025 09:42:14 +0100 Subject: [PATCH] Remove saving state from demo workflow --- .github/workflows/run.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index b74025a9..f66b42e4 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -52,29 +52,6 @@ jobs: if: matrix.os != 'macos-14' run: | ./bin/dfx-sns-demo-mksns-parallel -s 10 --config_index_offset 2 -m snsdemo8 - - name: Save state - if: matrix.os != 'macos-14' - run: | - # Stop the replica to let it persist all its state before we save the state. - dfx stop - echo "Waiting for replica to stop" - for (( i=100; i>0; i-- )); do - echo "$i" - pgrep replica || break - sleep 1 - done - echo "Making sure the replica is dead" - ./bin/dfx-network-stop - sleep 1 - echo "Saving state" - bin/dfx-snapshot-save --verbose --snapshot state.tar.xz - - name: Upload state - if: matrix.os != 'macos-14' - uses: actions/upload-artifact@v3 - with: - name: snsdemo - path: state.tar.xz - retention-days: 3 demo_latest: if: true # Claim that snsdemo works with the latest IC repo commit (true) or acknowledge that it doesn't (false). runs-on: ${{ matrix.os }}