Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 25a936f

Browse files
committedJul 10, 2024·
fix
1 parent 8462702 commit 25a936f

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed
 

‎.github/workflows/library_dafny_verification.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,24 @@ jobs:
7070
# This works because `node` is installed by default on GHA runners
7171
CORES=$(node -e 'console.log(os.cpus().length)')
7272
make verify_service CORES=$CORES SERVICE=${{ matrix.library }}
73-
73+
74+
- name: Check solver resource use
75+
if: (success() || failure()) && ${{ matrix.library != 'TestVectors' }}
76+
working-directory: ./DynamoDbEncryption
77+
run: |
78+
make dafny-reportgenerator
79+
7480
- name: Verify TestVectors Dafny code
7581
if: ${{ matrix.library == 'TestVectors' }}
7682
working-directory: ${{ matrix.library }}
7783
run: |
7884
# This works because `node` is installed by default on GHA runners
7985
CORES=$(node -e 'console.log(os.cpus().length)')
8086
make verify CORES=$CORES
81-
87+
8288
- name: Check solver resource use
83-
if: success() || failure()
84-
working-directory: ${{ matrix.library }}
89+
if: (success() || failure()) && ${{ matrix.library == 'TestVectors' }}
90+
working-directory: ${{matrix.library}}
8591
run: |
8692
make dafny-reportgenerator
93+

0 commit comments

Comments
 (0)
Please sign in to comment.