-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: l-1squared <[email protected]>
- Loading branch information
1 parent
b33af82
commit b64535d
Showing
1 changed file
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,25 @@ jobs: | |
name: Mock-release JGiven | ||
runs-on: ubuntu-latest | ||
env: | ||
CERTIFICATE_PASSWORD: 'clearlyNotARealPassword' | ||
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 server.p12 -name "localhost" -password "pass:${CERTIFICATE_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}" | ||
|
@@ -26,21 +33,22 @@ 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 server.p12 & | ||
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 | ||
- name: Upload test results html files | ||
continue-on-error: true | ||
if: ${{failure()}} | ||
|
@@ -49,4 +57,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 | ||
|