Fix CVE #401
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: CI Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
matrix-build: | |
runs-on: ubuntu-20.04 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.exasol_db_version }} | |
cancel-in-progress: true | |
strategy: | |
fail-fast: false | |
matrix: | |
exasol_db_version: ["8.23.1", "7.1.24"] | |
env: | |
DEFAULT_EXASOL_DB_VERSION: "8.23.1" | |
steps: | |
- name: Free Disk Space | |
run: | | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /usr/share/dotnet | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 & 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: | | |
17 | |
11 | |
cache: "maven" | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
cache: false | |
- name: Cache Go modules | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/go-build | |
~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Enable testcontainer reuse | |
run: echo 'testcontainers.reuse.enable=true' > "$HOME/.testcontainers.properties" | |
- name: Run scalafix linting | |
if: ${{ matrix.exasol_db_version == env.DEFAULT_EXASOL_DB_VERSION }} | |
run: mvn --batch-mode clean compile test-compile scalastyle:check scalafix:scalafix spotless:check | |
- name: Build extension | |
run: | | |
mvn package -DskipTests | |
cd extension | |
npm ci | |
npm run build | |
npm run test | |
npm run lint | |
- name: Run tests and build with Maven | |
run: > | |
JAVA_HOME=$JAVA_HOME_11_X64 | |
mvn --batch-mode verify | |
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
-DtrimStackTrace=false | |
-Dcom.exasol.dockerdb.image=${{ matrix.exasol_db_version }} | |
env: | |
# Passing system property via -Dcom.exasol.dockerdb.image does not work because the scalatest plugin does | |
# not forward it to the test. So we use this environment variable, | |
# see BaseIntegrationTest.scala.getExasolDockerImageVersion() | |
EXASOL_DB_VERSION: ${{ matrix.exasol_db_version }} | |
- name: Publish Test Report for Exasol ${{ matrix.exasol_db_version }} | |
uses: scacap/action-surefire-report@v1 | |
if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Sonar analysis | |
if: ${{ env.SONAR_TOKEN != null && matrix.exasol_db_version == env.DEFAULT_EXASOL_DB_VERSION }} | |
run: > | |
JAVA_HOME=$JAVA_HOME_17_X64 | |
mvn --batch-mode org.sonarsource.scanner.maven:sonar-maven-plugin:sonar | |
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | |
-DtrimStackTrace=false | |
-Dsonar.organization=exasol | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.token=$SONAR_TOKEN | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
build: | |
needs: matrix-build | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Build successful" |