Skip to content

Commit

Permalink
[PIP-156][ci] trying to fix the yaml format error from pulsar-ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
heesung-sn committed Apr 28, 2022
1 parent af33ccb commit 77ef2f5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/pulsar-ci.yaml
Expand Up @@ -475,12 +475,12 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '17' ]
java: [ 8, 11, 17 ]

steps:
- name: checkout
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Tune Runner VM
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
Expand Down Expand Up @@ -542,13 +542,14 @@ jobs:
run: |
./build/run_integration_group.sh SHADE_BUILD
- uses: actions/checkout@v3
- name: Run integration test group Shade on java '${{ matrix.java }}'
- uses: actions/setup-java@v3
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}

- name: Run integration test group Shade on java '${{ matrix.java }}'
if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
run: |
./build/run_integration_group.sh SHADE_RUN
Expand Down

0 comments on commit 77ef2f5

Please sign in to comment.