Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Jul 29, 2024
1 parent 586e639 commit 40db647
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/fixtures.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Rebuilds proof fixtures for Solidity and Move (TBD) for smart contract verification tests
# The fixtures are located in `aptos/solidity/contracts/src/plonk_fixtures`
# Rebuilds proof fixtures for Solidity and Move for smart contract verification tests
# Then opens a pull request with the changes
# Note: This workflow takes over 30 minutes due to parallel E2E proof generation for `inclusion` and `epoch_change`
name: Update fixtures
Expand Down Expand Up @@ -71,9 +70,10 @@ jobs:
path: ${{ github.workspace }}/${{ env.SOLIDITY_FIXTURE_PATH }}
pattern: "solidity_*"
merge-multiple: true
- run: ls ${{ github.workspace }}/${{ env.SOLIDITY_FIXTURE_PATH }}
- name: Rename Solidity fixtures
run: |
for file in solidity_*_fixture.json; do
for file in "solidity_*"; do
mv "$file" "${file#solidity_}"
done
working-directory: ${{ github.workspace }}/${{ env.SOLIDITY_FIXTURE_PATH }}
Expand All @@ -85,7 +85,7 @@ jobs:
merge-multiple: true
- name: Rename Move fixtures
run: |
for file in move_*_fixture.json; do
for file in "move_*"; do
mv "$file" "${file#move_}"
done
working-directory: ${{ github.workspace }}/${{ env.MOVE_FIXTURE_PATH }}
Expand All @@ -99,6 +99,6 @@ jobs:
labels: "automated-issue"
reviewers: "tchataigner, storojs72, wwared, huitseeker, samuelburnham"
body: |
This is an automated PR updating the proof fixtures for Solidity and Move (TBD), which are used for smart contract verification tests.
This is an automated PR updating the proof fixtures for Solidity and Move, which are used for smart contract verification tests.
Workflow run: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}

0 comments on commit 40db647

Please sign in to comment.