Skip to content

Commit

Permalink
Fix conditional tests in GA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mpfaff committed Jun 9, 2024
1 parent 5315659 commit 76b6df1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ jobs:
platform: linux-x64
bootjdk-platform: linux-x64
runs-on: ubuntu-22.04
if: github.event.inputs.run_tests
if: github.event.inputs.run_tests == 'true'

test-linux-x86:
name: linux-x86
Expand All @@ -315,7 +315,7 @@ jobs:
platform: linux-x86
bootjdk-platform: linux-x64
runs-on: ubuntu-22.04
if: github.event.inputs.run_tests
if: github.event.inputs.run_tests == 'true'

test-macos-x64:
name: macos-x64
Expand All @@ -326,7 +326,7 @@ jobs:
platform: macos-x64
bootjdk-platform: macos-x64
runs-on: macos-13
if: github.event.inputs.run_tests
if: github.event.inputs.run_tests == 'true'

test-macos-aarch64:
name: macos-aarch64
Expand All @@ -337,7 +337,7 @@ jobs:
platform: macos-aarch64
bootjdk-platform: macos-aarch64
runs-on: macos-14
if: github.event.inputs.run_tests
if: github.event.inputs.run_tests == 'true'

test-windows-x64:
name: windows-x64
Expand All @@ -348,4 +348,4 @@ jobs:
platform: windows-x64
bootjdk-platform: windows-x64
runs-on: windows-2019
if: github.event.inputs.run_tests
if: github.event.inputs.run_tests == 'true'

0 comments on commit 76b6df1

Please sign in to comment.