Skip to content

Commit

Permalink
y
Browse files Browse the repository at this point in the history
  • Loading branch information
brettaufheber committed Feb 13, 2024
1 parent 2bee110 commit 89cd845
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci_test-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
java-version: 11
distribution: adopt
architecture: x64
- name: Check Java and keytool version
run: |
java -version
keytool -help
- name: Cache Maven packages
uses: actions/cache@v2
with:
Expand All @@ -39,7 +43,7 @@ jobs:
env:
CROWD_LICENSE_KEY: ${{ secrets.CROWD_LICENSE_KEY }}
run: |
mvn --batch-mode verify
mvn --batch-mode verify -Djavax.net.debug=ssl
- name: Perform static code analysis
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion src/test/java/it/SslConnectionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public SslConnectionTest() {
super(new JsonWithGroupNestingAndSsl(10931));
}

@Disabled
@Test
@Order(1)
@DisplayName("it should be able to connect via SSL")
Expand Down
3 changes: 3 additions & 0 deletions ssl-test-setup/create-key-store.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ keytool -importkeystore \
-srckeystore "$INSTALL_DIR/local.keystore.p12" -destkeystore "$INSTALL_DIR/local.keystore.jks" \
-srcstoretype pkcs12 -alias "servercert"

keytool -list -v -keystore "$INSTALL_DIR/local.keystore.jks" -storepass "$PASSWORD"


exit 0

0 comments on commit 89cd845

Please sign in to comment.