Skip to content

Commit

Permalink
Declutter mvn output
Browse files Browse the repository at this point in the history
  • Loading branch information
rudsberg committed Jan 6, 2025
1 parent 0088c3a commit a8b9f27
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 98 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,14 +443,14 @@ jobs:
- name: Build Maven project and verify that SBOM was generated and its contents
run: |
cd __tests__/sbom/main-test-app
mvn -Pnative package
mvn --no-transfer-progress -Pnative package
bash verify-sbom.sh
shell: bash
if: runner.os != 'Windows'
- name: Build Maven project and verify that SBOM was generated and its contents (Windows)
run: |
cd __tests__\sbom\main-test-app
mvn -Pnative package
mvn --no-transfer-progress -Pnative package
cmd /c verify-sbom.cmd
shell: cmd
if: runner.os == 'Windows'
100 changes: 53 additions & 47 deletions dist/cleanup/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

100 changes: 53 additions & 47 deletions dist/main/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export async function createPRComment(content: string): Promise<void> {
}

export function tmpfile(fileName: string) {
return join(tmpdir(), fileName)
return join(tmpdir(), fileName)
}

export function setNativeImageOption(
Expand Down Expand Up @@ -292,4 +292,4 @@ function getNativeImageOptionsFile(): string {
core.exportVariable(NATIVE_IMAGE_CONFIG_FILE_ENV, optionsFile)
}
return optionsFile
}
}

0 comments on commit a8b9f27

Please sign in to comment.