Skip to content

Commit d7f59fd

Browse files
committed
Fixed missed bugs
1 parent 4a47543 commit d7f59fd

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/test-branch-runner.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
input-matrix: ${{ steps.set.outputs.input-matrix }}
1616
java-version: ${{ steps.get-java-version.outputs.java-version }}
1717
steps:
18-
- uses: actions/checkout@v4 # brings versions.json into the workspace
18+
- uses: actions/checkout@v4 # brings versions.json into the workspace
1919
with:
2020
ref: ${{ github.ref }}
2121

22-
- id: set # create the matrix (compact JSON string)
22+
- id: set # create the matrix (compact JSON string)
2323
shell: bash
2424
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 }}
2727
run: |
2828
FILE=${TEST_SERVERS_FILE_PATH}
2929
@@ -60,15 +60,16 @@ jobs:
6060
uses: ./.github/workflows/test-branch.yaml
6161
needs: make-matrix
6262
strategy:
63-
matrix:
63+
matrix:
6464
include: ${{ fromJson(needs.make-matrix.outputs.input-matrix) }}
6565
crypto-type: [bouncycastle, gnu]
6666
name: build-${{ matrix.server }}-${{ matrix.version }}
6767
with:
6868
java-version: ${{ needs.make-matrix.outputs.java-version }}
6969
crypto-type: ${{ matrix.crypto-type }}
7070
source-branch: ${{ inputs.source-branch }}
71-
run-tests: true
71+
run-tests: true
7272
server-tag: ${{ matrix.version }}
7373
server-type: ${{ matrix.type }}
74-
secrets: inherit
74+
secrets: inherit
75+

.github/workflows/test-branch.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ on:
1515
java-version:
1616
type: string
1717
required: true
18+
run-tests:
19+
type: boolean
20+
required: true
1821
server-tag:
1922
type: string
2023
required: true
@@ -52,5 +55,6 @@ jobs:
5255
crypto-type: ${{ inputs.crypto-type }}
5356
server-tag: ${{ inputs.server-tag }}
5457
server-type: ${{ inputs.server-type }}
58+
run-tests: ${{ input.run-tests }}
5559
oidc-provider: ${{ secrets.JFROG_OIDC_PROVIDER }}
5660
oidc-audience: ${{ secrets.JFROG_OIDC_AUDIENCE }}

0 commit comments

Comments
 (0)