deps: Update bundled JDK to version 17.0.8.1 #23
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: Build | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- main | |
env: | |
TAG: felipebz/zpa-cli:nightly | |
jobs: | |
build: | |
name: Build and release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build --refresh-dependencies | |
- name: Assemble | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: copyJdksToCache jreleaserAssemble | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
load: true | |
tags: ${{ env.TAG }} | |
- if: github.ref == 'refs/heads/main' | |
name: Push docker image to Docker Hub | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ env.TAG }} | |
- if: github.ref == 'refs/heads/main' | |
name: Release artifacts | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: jreleaserFullRelease | |
env: | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
demo: | |
name: Analyze demo project on SonarCloud | |
runs-on: ubuntu-latest | |
needs: build | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: utPLSQL/utPLSQL | |
- name: Analyze with zpa-cli | |
run: | | |
docker run --rm \ | |
-v $PWD:/src \ | |
felipebz/zpa-cli:nightly \ | |
--sources . \ | |
--output-file zpa-issues.json \ | |
--output-format sq-generic-issue-import | |
- name: Analyze with SonarCloud | |
uses: sonarsource/sonarcloud-github-action@master | |
with: | |
args: > | |
-Dsonar.projectKey=utPLSQL-zpa-demo | |
-Dsonar.organization=felipebz-github | |
-Dsonar.externalIssuesReportPaths=zpa-issues.json | |
-Dsonar.pullrequest.provider= | |
-Dsonar.coverageReportPaths= | |
-Dsonar.testExecutionReportPaths= | |
-Dsonar.plsql.file.suffixes=sql,pkg,pks,pkb,fun,pcd,tgg,prc,tpb,trg,typ,tab,tps | |
-Dsonar.scm.disabled=true | |
-Dsonar.tests= | |
env: | |
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} |