Skip to content

Commit

Permalink
WIP use https
Browse files Browse the repository at this point in the history
Signed-off-by: l-1squared <[email protected]>
  • Loading branch information
l-1squared committed Jan 12, 2024
1 parent b33af82 commit 2e4ce3d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/mock_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,26 @@ jobs:
name: Mock-release JGiven
runs-on: ubuntu-latest
env:
KEYSTORE_PASSWORD: 'clearlyNotARealPassword'
KEYSTORE_NAME: 'server.p12'
SONATYPE_PASSWORD: 'notARealPassword'
SONATYPE_USERNAME: 'notARealUsername'
GPG_PASSWORD: 'espalhando'
GPG_KEY_ID: '[email protected]'
VERSION: '0.0.1-TEST'
steps:
- uses: actions/[email protected]
- name: Set up JDK 11
uses: actions/[email protected]
with:
java-version: '11'
distribution: 'adopt'
- name: Set up a server certificate
run: |
openssl genrsa -out server.key 2048
openssl req -new -key server.key -out server.csr -subj '/C=DE/ST=Berlin/L=Berlin/O=JGiven/OU=JGiven/CN=localhost'
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
openssl pkcs12 -export -in server.crt -inkey server.key -out ${KEYSTORE_NAME} -name "localhost" -password "pass:${KEYSTORE_PASSWORD}"
keytool -import -cacerts -storepass changeit -noprompt -alias "localhost" -file server.crt
- name: Set up openpgp signing keys
run: |
gpg --quick-gen-key --batch --passphrase "${GPG_PASSWORD}" "${GPG_KEY_ID}"
Expand All @@ -26,21 +34,26 @@ jobs:
run: |
wget https://repo1.maven.org/maven2/org/wiremock/wiremock-standalone/3.3.1/wiremock-standalone-3.3.1.jar
wiremock=$(find ./ -name "wiremock-standalone-*.jar")
java -jar ${wiremock} --port 7000 --verbose &
java -jar ${wiremock} --port 7000 --https-port 8443 --verbose --https-keystore ${KEYSTORE_NAME} \
--keystore-password ${KEYSTORE_PASSWORD} --keystore-type PKCS12 &
while ! nc -z localhost 7000; do
sleep 0.1 # wait for 1/10 of the second before check again
done
- name: Add mock server mappings
run: |
curl -X POST --data '{"request": {"urlPattern": "/com/tngtech/jgiven/[^/]+/[^/]+/[^/]+", "method": "PUT"}, "response": {"status": 200, "body": "OK"}}' http://localhost:7000/__admin/mappings
curl -X POST --data '{"request": {"urlPattern": "/com/tngtech/jgiven/.*?/maven-metadata.xml(?:[.]sha(?:1|512|256)|[.]md5)?", "method": "PUT"}, "response": {"status": 200, "body": "OK"}}' http://localhost:7000/__admin/mappings
- uses: actions/[email protected]
- name: set an alternate version
run: "source scripts/source_files/helper_functions.sh && updateAllVersionInformation ${VERSION}"
- name: Attempt mock release
run: >
./gradlew test publishMavenPublicationToMavenLocal publishMavenPublicationToMavenRepository
-PsigningKey="$(gpg --batch --pinentry-mode=loopback --yes --passphrase "${GPG_PASSWORD}" --armor --export-secret-key "${GPG_KEY_ID}")"
-PsigningPassword="${GPG_PASSWORD}" -Ppublishing.releaseUrl=http://localhost:7000 -Ppublishing.allowInsecureProtocol=true
-PsigningPassword="${GPG_PASSWORD}" -Ppublishing.releaseUrl=https://localhost:8443 -Ppublishing.allowInsecureProtocol=false
-- info --stacktrace
env:
RELEASE: TRUE
- name: Upload test results html files
continue-on-error: true
if: ${{failure()}}
Expand All @@ -49,4 +62,7 @@ jobs:
name: test-report.zip
path: /home/runner/work/JGiven/JGiven/*/build/reports/tests
if-no-files-found: ignore
- name: shut down server
continue-on-error: true
run: curl -X POST http://localhost:7000/__admin/shutdown

1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,6 @@ configure(subprojects) {
}
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
println signingKey
useInMemoryPgpKeys(signingKey, signingPassword)
sign publishing.publications
}
Expand Down

0 comments on commit 2e4ce3d

Please sign in to comment.