File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -70,17 +70,24 @@ jobs:
70
70
# This works because `node` is installed by default on GHA runners
71
71
CORES=$(node -e 'console.log(os.cpus().length)')
72
72
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
+
74
80
- name : Verify TestVectors Dafny code
75
81
if : ${{ matrix.library == 'TestVectors' }}
76
82
working-directory : ${{ matrix.library }}
77
83
run : |
78
84
# This works because `node` is installed by default on GHA runners
79
85
CORES=$(node -e 'console.log(os.cpus().length)')
80
86
make verify CORES=$CORES
81
-
87
+
82
88
- 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}}
85
91
run : |
86
92
make dafny-reportgenerator
93
+
You can’t perform that action at this time.
0 commit comments