mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-04-05 03:50:09 +08:00
Fix GDS_TOKEN
check.
This commit is contained in:
parent
ef3ebf8051
commit
02f9160735
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
@ -36,6 +36,9 @@ jobs:
|
|||||||
test-action:
|
test-action:
|
||||||
name: GraalVM
|
name: GraalVM
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
env:
|
||||||
|
# Skip builds that require a GDS token but have no access to one (e.g., secrets are unavailable in PR runs)
|
||||||
|
PASSES_GDS_TOKEN_CHECK: ${{ !matrix.set-gds-token || secrets.GDS_TOKEN != '' }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
java-version: ['23', '21', '17', '20', 'dev']
|
java-version: ['23', '21', '17', '20', 'dev']
|
||||||
@ -87,8 +90,7 @@ jobs:
|
|||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
components: ${{ matrix.components }}
|
components: ${{ matrix.components }}
|
||||||
gds-token: ${{ matrix.set-gds-token && secrets.GDS_TOKEN || '' }}
|
gds-token: ${{ matrix.set-gds-token && secrets.GDS_TOKEN || '' }}
|
||||||
# Skip in PR builds that require a GDS token (secrets are not available in PR runs)
|
if: env.PASSES_GDS_TOKEN_CHECK
|
||||||
if: github.event_name != 'pull_request' || !matrix.set-gds-token
|
|
||||||
- name: Check environment
|
- name: Check environment
|
||||||
run: |
|
run: |
|
||||||
echo "GRAALVM_HOME: $GRAALVM_HOME"
|
echo "GRAALVM_HOME: $GRAALVM_HOME"
|
||||||
@ -101,14 +103,14 @@ jobs:
|
|||||||
java --version
|
java --version
|
||||||
java --version | grep "GraalVM" || exit 34
|
java --version | grep "GraalVM" || exit 34
|
||||||
native-image --version
|
native-image --version
|
||||||
if: runner.os != 'Windows' && (github.event_name != 'pull_request' || !matrix.set-gds-token)
|
if: runner.os != 'Windows' && env.PASSES_GDS_TOKEN_CHECK
|
||||||
- name: Check Windows environment
|
- name: Check Windows environment
|
||||||
run: |
|
run: |
|
||||||
echo "GRAALVM_HOME: $env:GRAALVM_HOME"
|
echo "GRAALVM_HOME: $env:GRAALVM_HOME"
|
||||||
echo "JAVA_HOME: $env:JAVA_HOME"
|
echo "JAVA_HOME: $env:JAVA_HOME"
|
||||||
java --version
|
java --version
|
||||||
native-image --version
|
native-image --version
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows' && env.PASSES_GDS_TOKEN_CHECK
|
||||||
|
|
||||||
test-action-ce: # make sure the action works on a clean machine without building
|
test-action-ce: # make sure the action works on a clean machine without building
|
||||||
needs: test-action
|
needs: test-action
|
||||||
@ -453,7 +455,6 @@ jobs:
|
|||||||
java-version: ['24-ea', 'latest-ea']
|
java-version: ['24-ea', 'latest-ea']
|
||||||
distribution: ['graalvm']
|
distribution: ['graalvm']
|
||||||
os: [macos-latest, windows-latest, ubuntu-latest]
|
os: [macos-latest, windows-latest, ubuntu-latest]
|
||||||
set-gds-token: [false]
|
|
||||||
components: ['']
|
components: ['']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -464,7 +465,6 @@ jobs:
|
|||||||
distribution: ${{ matrix.distribution }}
|
distribution: ${{ matrix.distribution }}
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
components: ${{ matrix.components }}
|
components: ${{ matrix.components }}
|
||||||
gds-token: ${{ matrix.set-gds-token && secrets.GDS_TOKEN || '' }}
|
|
||||||
native-image-enable-sbom: 'true'
|
native-image-enable-sbom: 'true'
|
||||||
- name: Build Maven project and verify that SBOM was generated and its contents
|
- name: Build Maven project and verify that SBOM was generated and its contents
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user