From 126bfca22d1b15cf5dcab7ed6e3fc43c0bedcad1 Mon Sep 17 00:00:00 2001 From: Damian Ujma Date: Thu, 11 Jun 2026 11:58:25 +0200 Subject: [PATCH] ACS-12005 Remove Veracode SCA jobs from CI workflow --- .github/workflows/build.yml | 8 -------- _ci/source_clear.sh | 22 ---------------------- 2 files changed, 30 deletions(-) delete mode 100644 _ci/source_clear.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index def4bd8c..66be0779 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,8 +27,6 @@ jobs: Test: runs-on: ubuntu-latest strategy: - matrix: - stage: [ source_clear ] fail-fast: false steps: - uses: actions/checkout@v4 @@ -56,12 +54,6 @@ jobs: key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - - - name: Run ${{ matrix.stage }} - if: ${{ ( matrix.stage != 'source_clear' && github.ref_name != 'company_release') || matrix.stage == 'source_clear' }} - run: | - bash _ci/${{ matrix.stage }}.sh - - name: "Build and test" run: | mvn install -DskipTests=true -B -V diff --git a/_ci/source_clear.sh b/_ci/source_clear.sh deleted file mode 100644 index 5ad4a376..00000000 --- a/_ci/source_clear.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash - -echo "=========================== Starting SourceClear Script ===========================" -PS4="\[\e[35m\]+ \[\e[m\]" -set +e -v -x -pushd "$(dirname "${BASH_SOURCE[0]}")/../" - -mvn -B -q clean install \ - -DskipTests \ - -Dmaven.javadoc.skip=true \ - com.srcclr:srcclr-maven-plugin:scan \ - -Dcom.srcclr.apiToken=$SRCCLR_API_TOKEN > scan.log - -SUCCESS=$? # this will read exit code of the previous command - -cat scan.log | grep -e 'Full Report Details' -e 'Failed' - -popd -set +vex -echo "=========================== Finishing SourceClear Script ==========================" - -exit ${SUCCESS} \ No newline at end of file