AST-41922 fix the installer to get the envVars from the global Jenkins area #389
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: AST Scanner plugin CI | |
on: [pull_request] | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
env: | |
CX_BASE_URI: ${{ secrets.CX_BASE_URI}} | |
CX_BASE_AUTH_URI: ${{ secrets.CX_BASE_AUTH_URI}} | |
CX_TENANT: ${{ secrets.CX_TENANT }} | |
CX_CLIENT_ID: ${{ secrets.CX_CLIENT_ID }} | |
CX_CLIENT_SECRET: ${{ secrets.CX_CLIENT_SECRET }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/[email protected] | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
server-id: github | |
settings-path: ${{ github.workspace }} | |
- name: Build with Maven | |
run: mvn -B package --file pom.xml -s $GITHUB_WORKSPACE/settings.xml | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |