Skip to content

Commit

Permalink
add verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
paullatzelsperger committed Jul 10, 2023
1 parent 44d8d16 commit 9b5b15c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ jobs:
- name: Run MIW Integration tests
run: |
pwd
./gradlew -p edc-tests/miw-tests test -DincludeTags="MiwIntegrationTest"
./gradlew -p edc-tests/miw-tests test -DincludeTags="MiwIntegrationTest" -PverboseTest=true
- name: Run SSI E2E tests
run: |
pwd
./gradlew -p edc-tests/e2e-tests test -DincludeTags="MiwIntegrationTest"
./gradlew compileJava compileTestJava
./gradlew -p edc-tests/e2e-tests test -DincludeTags="MiwIntegrationTest" -PverboseTest=true
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,11 @@ private JWSHeader createHeader() {

private JWK createJwkKeypair() {
try {
var jwk = new OctetKeyPairGenerator(Curve.Ed25519)
return new OctetKeyPairGenerator(Curve.Ed25519)
.keyUse(KeyUse.SIGNATURE) // indicate the intended use of the key (optional)
.keyID(UUID.randomUUID().toString()) // give the key a unique ID (optional)
.issueTime(new Date()) // issued-at timestamp (optional)
.generate();
return jwk;
} catch (Exception e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 9b5b15c

Please sign in to comment.