[Gradle] Don't use full multi-threading, SBOMs can be completely wrong #1170
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: Reachables tests | |
on: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['22.x'] | |
os: ['ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm install, build | |
run: | | |
corepack enable | |
corepack pnpm install | |
mkdir -p repotests | |
mkdir -p bomresults | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'DependencyTrack/dependency-track' | |
path: 'repotests/dependency-track' | |
ref: '4.11.1' | |
- name: compile | |
run: | | |
cd repotests/dependency-track | |
mvn -q clean compile -DskipTests -Dmaven.test.skip=true | |
- name: repotests | |
run: | | |
node bin/cdxgen.js -p -t java --profile research -o repotests/dependency-track/bom.json repotests/dependency-track | |
ls -ltr repotests/dependency-track/ | |
cp -rf repotests/dependency-track/*.json bomresults/ | |
env: | |
CDXGEN_DEBUG_MODE: debug | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: bomresults | |
path: bomresults |