File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test get-distribution-classifiers action
2+
3+ on :
4+ workflow_call :
5+
6+ jobs :
7+ get :
8+ outputs :
9+ distribution-classifiers : ${{ steps.distribution-classifiers.outputs.classifiers }}
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : Checkout repository
13+ uses : actions/checkout@v6
14+
15+ - id : distribution-classifiers
16+ uses : ./get-distribution-classifiers
17+
18+ # Doesn't explicitly assert, but validates that the output is valid for matrix consumption
19+ test :
20+ runs-on : ubuntu-latest
21+ needs :
22+ - get
23+ strategy :
24+ matrix :
25+ classifier : ${{ fromJSON(needs.get.outputs.distribution-classifiers) }}
26+ steps :
27+ - run : exit 0
28+
Original file line number Diff line number Diff line change 1919 test-download-hz-dist :
2020 uses : ./.github/workflows/test-download-hz-dist.yml
2121
22+ test-get-distribution-classifiers :
23+ uses : ./.github/workflows/test-get-distribution-classifiers.yml
24+
2225 test-get-hz-versions :
2326 uses : ./.github/workflows/test-get-hz-versions.yml
2427
3841 - test-check-base-images
3942 - test-check-redhat-service-status
4043 - test-download-hz-dist
44+ - test-get-distribution-classifiers
4145 - test-get-hz-versions
4246 - test-get-supported-jdks
4347 - test-resolve-editions
You can’t perform that action at this time.
0 commit comments