Drop JDK 7 and fix CI build #236
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: rollbar-java CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
validation: | |
name: Gradle wrapper validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/actions/wrapper-validation@v3 | |
build: | |
runs-on: ubuntu-latest | |
name: Build with Java ${{ matrix.java }} | |
needs: [validation] | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [8, 11, 17, 21, 22] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch git tags | |
run: ./.github/scripts/fetch_to_tag.sh | |
- name: Set up Java ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: 'gradle' | |
# gradle/actions/setup-gradle@v3 might offer better caching and other benefits through better integration | |
# https://github.com/gradle/actions/blob/main/docs/setup-gradle.md | |
- name: Environment info | |
run: | | |
./gradlew --version | |
echo JAVA_HOME: ${JAVA_HOME} | |
java -version | |
javac -version | |
- name: Android SDK info | |
run: | | |
echo ANDROID_SDK_ROOT: ${ANDROID_SDK_ROOT} | |
${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --version | |
- name: Build | |
run: ./gradlew clean build | |
- name: Upload build reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-reports | |
path: | | |
**/build/reports/* | |
release: | |
runs-on: ubuntu-latest | |
name: Release | |
# It would be nice to run this as part of the build job, since it would be | |
# faster and have less duplicated Yaml, it would not be possible to check | |
# for all matrix results before publishing if this were just another step | |
# in that job. | |
needs: [build] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java 8 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: 'zulu' | |
cache: 'gradle' | |
- name: Release | |
env: | |
SECRING_GPG_IV: ${{ secrets.SECRING_GPG_IV }} | |
SECRING_GPG_KEY: ${{ secrets.SECRING_GPG_KEY }} | |
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
ENCRYPTED_GPG_KEY_LOCATION: ./.github/secring.gpg.enc | |
GPG_KEY_LOCATION: ./.github/secring.gpg | |
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} | |
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} | |
run: | | |
if test "$GITHUB_REPOSITORY" = "rollbar/rollbar-java" -a "$GITHUB_BASE_REF" = ""; then | |
openssl enc -aes-256-cbc -K "$SECRING_GPG_KEY" -iv "$SECRING_GPG_IV" -in "$ENCRYPTED_GPG_KEY_LOCATION" -out "$GPG_KEY_LOCATION" -d | |
fi && | |
./.github/scripts/release.sh |