Skip to content

Commit 52760fb

Browse files
committed
Use 5.0 preview 1 instead of latest
1 parent f107f5e commit 52760fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/actions/run_test/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ runs:
4646
# Note: hxcpp currently doesn't work on Haxe 5 (latest)
4747

4848
- name: Setup Hxcpp
49-
if: ${{ inputs.haxe-version != 'latest' }}
49+
if: ${{ inputs.haxe-version != 'latest' && inputs.haxe-version != '5.0.0-preview.1' }}
5050
run: haxelib install hxcpp
5151
shell: bash
5252

5353
- name: Compile Test for C++
54-
if: ${{ inputs.haxe-version != 'latest' }}
54+
if: ${{ inputs.haxe-version != 'latest' && inputs.haxe-version != '5.0.0-preview.1' }}
5555
run: haxe Test.hxml -cpp bin
5656
working-directory: test
5757
shell: bash
5858

5959
- name: Test C++
60-
if: ${{ inputs.haxe-version != 'latest' }}
60+
if: ${{ inputs.haxe-version != 'latest' && inputs.haxe-version != '5.0.0-preview.1' }}
6161
run: ./bin/Test
6262
working-directory: test
6363
shell: bash

.github/workflows/run_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727

2828
- uses: ./.github/actions/run_test
2929
with:
30-
haxe-version: latest
30+
haxe-version: 5.0.0-preview.1

0 commit comments

Comments
 (0)