File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ jobs:
15
15
input-matrix : ${{ steps.set.outputs.input-matrix }}
16
16
java-version : ${{ steps.get-java-version.outputs.java-version }}
17
17
steps :
18
- - uses : actions/checkout@v4 # brings versions.json into the workspace
18
+ - uses : actions/checkout@v4 # brings versions.json into the workspace
19
19
with :
20
20
ref : ${{ github.ref }}
21
21
22
- - id : set # create the matrix (compact JSON string)
22
+ - id : set # create the matrix (compact JSON string)
23
23
shell : bash
24
24
env :
25
- DEFAULT_JSON : ${{ vars.DEFAULT_SERVER_VERSIONS }}
26
- TEST_SERVERS_FILE_PATH : ${{ vars.TEST_SERVERS_FILE_PATH }}
25
+ DEFAULT_JSON : ${{ vars.DEFAULT_SERVER_VERSIONS }}
26
+ TEST_SERVERS_FILE_PATH : ${{ vars.TEST_SERVERS_FILE_PATH }}
27
27
run : |
28
28
FILE=${TEST_SERVERS_FILE_PATH}
29
29
@@ -60,15 +60,16 @@ jobs:
60
60
uses : ./.github/workflows/test-branch.yaml
61
61
needs : make-matrix
62
62
strategy :
63
- matrix :
63
+ matrix :
64
64
include : ${{ fromJson(needs.make-matrix.outputs.input-matrix) }}
65
65
crypto-type : [bouncycastle, gnu]
66
66
name : build-${{ matrix.server }}-${{ matrix.version }}
67
67
with :
68
68
java-version : ${{ needs.make-matrix.outputs.java-version }}
69
69
crypto-type : ${{ matrix.crypto-type }}
70
70
source-branch : ${{ inputs.source-branch }}
71
- run-tests : true
71
+ run-tests : true
72
72
server-tag : ${{ matrix.version }}
73
73
server-type : ${{ matrix.type }}
74
- secrets : inherit
74
+ secrets : inherit
75
+
Original file line number Diff line number Diff line change 15
15
java-version :
16
16
type : string
17
17
required : true
18
+ run-tests :
19
+ type : boolean
20
+ required : true
18
21
server-tag :
19
22
type : string
20
23
required : true
52
55
crypto-type : ${{ inputs.crypto-type }}
53
56
server-tag : ${{ inputs.server-tag }}
54
57
server-type : ${{ inputs.server-type }}
58
+ run-tests : ${{ input.run-tests }}
55
59
oidc-provider : ${{ secrets.JFROG_OIDC_PROVIDER }}
56
60
oidc-audience : ${{ secrets.JFROG_OIDC_AUDIENCE }}
You can’t perform that action at this time.
0 commit comments