Skip to content

Commit

Permalink
Continue on test errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
J08nY committed Aug 7, 2024
1 parent 06fd1ce commit b6c35d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
run: ./gradlew standalone:run --args="list-libs"

- name: Test
run: ./gradlew standalone:test
run: ./gradlew standalone:test --continue

- name: Upload build artifacts
uses: actions/upload-artifact@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public StandalonePerformanceSuite(TestWriter writer, ECTesterStandalone.Config c

@Override
protected void runTests() throws Exception {
String kpgAlgo = cli.getOptionValue("test.kpg-type");
String kaAlgo = cli.getOptionValue("test.ka-type");
String sigAlgo = cli.getOptionValue("test.sig-type");
String kpgAlgo = cli.getOptionValue("test.kpg-type", "EC");
String kaAlgo = cli.getOptionValue("test.ka-type", "ECDH");
String sigAlgo = cli.getOptionValue("test.sig-type", "ECDSA");
String keyAlgo = cli.getOptionValue("test.key-type", "AES");

List<String> kpgTypes = kpgAlgo != null ? Arrays.asList(kpgAlgo.split(",")) : new ArrayList<>();
Expand Down

0 comments on commit b6c35d1

Please sign in to comment.