Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restrict -t java11 to linux only in repotests #1604

Merged
merged 4 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/repotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ jobs:
with:
repository: 'bazelbuild/examples'
path: 'repotests/bazel-examples'
ref: 'b51e3bdd468ce8c4a516d7dca993909dcc84af32'
- uses: actions/checkout@v4
with:
repository: 'flutter/gallery'
Expand Down Expand Up @@ -323,6 +324,7 @@ jobs:
bin/cdxgen.js -p -t java -exclude-type js repotests/java-sec-code -o bomresults/bom-java-sec-code-10.json
shell: bash
- name: repotests greyhound
if: matrix.os == 'ubuntu-latest'
run: |
bin/cdxgen.js -p -r -t java11 repotests/greyhound -o bomresults/bom-greyhound-java.json
bin/cdxgen.js -p -r -t gradle repotests/greyhound -o bomresults/bom-greyhound-gradle.json
Expand Down
2 changes: 1 addition & 1 deletion bin/cdxgen.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ const args = yargs(hideBin(process.argv))
})
.option("fail-on-error", {
type: "boolean",
default: !isSecureMode,
default: isSecureMode,
description: "Fail if any dependency extractor fails.",
})
.option("no-babel", {
Expand Down
Loading