Bump kotlin.version from 1.9.23 to 1.9.24 #902
Workflow file for this run
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
name: Java CI with Maven | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
paths: | |
- src/** | |
- pom.xml | |
- .github/workflows/ci.yaml | |
pull_request: | |
branches: | |
- develop | |
- main | |
paths: | |
- src/** | |
- pom.xml | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [8.x, 11.x, 17.x, 21.x] | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'liberica' | |
cache: maven | |
- name: Unit Tests | |
if: (github.ref != 'refs/heads/develop' && github.ref != 'refs/heads/main') || !startsWith(env.JAVA_HOME, '/opt/hostedtoolcache/Java_Liberica_jdk/8') | |
run: ./mvnw -V test --no-transfer-progress | |
- name: Unit Tests with Coverage | |
if: (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main') && startsWith(env.JAVA_HOME, '/opt/hostedtoolcache/Java_Liberica_jdk/8') | |
run: | | |
./mvnw -V jacoco:prepare-agent test jacoco:report --no-transfer-progress | |
- name: Build Javadoc | |
if: (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main') && startsWith(env.JAVA_HOME, '/opt/hostedtoolcache/Java_Liberica_jdk/8') | |
run: | | |
./mvnw -V javadoc:jar --no-transfer-progress | |
- name: Import Secrets | |
if: (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main') && startsWith(env.JAVA_HOME, '/opt/hostedtoolcache/Java_Liberica_jdk/8') | |
id: secrets | |
uses: hashicorp/[email protected] | |
with: | |
exportToken: true | |
exportEnv: true | |
method: jwt | |
url: ${{ secrets.VAULT_ADDR }} | |
role: cicd | |
secrets: | | |
kv/data/cicd/sonatype username | SONATYPE_USERNAME ; | |
kv/data/cicd/sonatype password | SONATYPE_PASSWORD ; | |
kv/data/cicd/gpg secring | GPG_SECRING ; | |
kv/data/cicd/gpg passphrase | GPG_PASSPHRASE ; | |
- name: Deploy to sonatype-snapshots | |
if: github.ref == 'refs/heads/develop' && startsWith(env.JAVA_HOME, '/opt/hostedtoolcache/Java_Liberica_jdk/8') | |
run: | | |
set -e | |
cat > settings.xml <<EOF | |
<settings> | |
<servers> | |
<server> | |
<id>sonatype-snapshots</id> | |
<username>${SONATYPE_USERNAME}</username> | |
<password>${SONATYPE_PASSWORD}</password> | |
</server> | |
</servers> | |
</settings> | |
EOF | |
CURRENT_VERSION=$(grep '<version>' pom.xml | head -n 1 | sed -e 's|<version>||g' -e 's|</version>||g' -e 's| ||g' | tr -d '\t') | |
if [ "${CURRENT_VERSION}" = "$(echo ${CURRENT_VERSION} | grep "\-SNAPSHOT")" ];then | |
./mvnw -V deploy -s settings.xml --no-transfer-progress -DskipTests=true -DserverId=sonatype-snapshots | |
fi | |
- name: Deploy to sonatype-releases | |
if: github.ref == 'refs/heads/main' && startsWith(env.JAVA_HOME, '/opt/hostedtoolcache/Java_Liberica_jdk/8') | |
run: | | |
set -e | |
cat > settings.xml <<EOF | |
<settings> | |
<servers> | |
<server> | |
<id>repo</id> | |
<username>${SONATYPE_USERNAME}</username> | |
<password>${SONATYPE_PASSWORD}</password> | |
</server> | |
</servers> | |
</settings> | |
EOF | |
mvn -V \ | |
javadoc:jar \ | |
source:jar \ | |
package \ | |
org.apache.maven.plugins:maven-gpg-plugin:3.0.1:sign \ | |
org.sonatype.plugins:nexus-staging-maven-plugin:1.6.13:deploy \ | |
--no-transfer-progress \ | |
-s settings.xml \ | |
-DserverId=repo \ | |
-Dgpg.passphrase=${GPG_PASSPHRASE} \ | |
-DnexusUrl=https://oss.sonatype.org \ | |
-DautoReleaseAfterClose=true \ | |
-DaltDeploymentRepository=repo::default::https://oss.sonatype.org/service/local/staging/deploy/maven2 \ | |
-DskipTests=true | |
- name: Revoke token | |
if: always() | |
run: | | |
curl -X POST -s -H "X-Vault-Token: ${VAULT_TOKEN}" ${{ secrets.VAULT_ADDR }}/v1/auth/token/revoke-self || true |