Skip to content

Commit 04ba041

Browse files
committed
use Haxe 4.1.2
1 parent 335f9de commit 04ba041

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/checkstyle-linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
haxe-version: ['3.4.7', '4.0.5', '4.1.1', 'nightly']
18+
haxe-version: ['3.4.7', '4.0.5', '4.1.2', 'nightly']
1919
env:
2020
CC_TEST_REPORTER_ID: 1dff6f89d7179dff5db635c6b4fe64acdd5694c9ed44d7da5f12f0f7d3d163b7
2121
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: 10
2828
- name: Installing codeclimate client
29-
if: matrix.haxe-version == '4.1.1'
29+
if: matrix.haxe-version == '4.1.2'
3030
run: |
3131
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
3232
chmod +x ./cc-test-reporter
@@ -72,13 +72,13 @@ jobs:
7272
if: matrix.haxe-version != '3.4.7'
7373
run: npx haxe testJvm.hxml
7474
- name: Format and upload codeclimate coverage
75-
if: success() && matrix.haxe-version == '4.1.1'
75+
if: success() && matrix.haxe-version == '4.1.2'
7676
run: |
7777
( \
7878
cd src; \
7979
../cc-test-reporter format-coverage -t lcov ../lcov.info; \
8080
../cc-test-reporter upload-coverage; \
8181
)
8282
- name: Upload results to codecov
83-
if: success() && (matrix.haxe-version == '3.4.7' || matrix.haxe-version == '4.1.1')
83+
if: success() && (matrix.haxe-version == '3.4.7' || matrix.haxe-version == '4.1.2')
8484
run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ install:
1919
- if [[ "$HAXE_VERSION" == "haxe347" ]]; then mv haxe_libraries haxe4_libraries; mv haxe3_libraries haxe_libraries; fi
2020
- if [[ "$HAXE_VERSION" == "haxe347" ]]; then npx lix download haxe 3.4.7; npx lix use haxe 3.4.7; fi
2121
- if [[ "$HAXE_VERSION" == "haxe4" ]]; then npx lix download haxe 4.0.5; npx lix use haxe 4.0.5; fi
22-
- if [[ "$HAXE_VERSION" == "haxe41" ]]; then npx lix download haxe 4.1.1; npx lix use haxe 4.1.1; fi
22+
- if [[ "$HAXE_VERSION" == "haxe41" ]]; then npx lix download haxe 4.1.2; npx lix use haxe 4.1.2; fi
2323
- if [[ "$HAXE_VERSION" == "nightly" ]]; then npx lix download haxe nightly; npx lix use haxe nightly; fi
2424
- npx lix download
2525
- npx haxe -version

0 commit comments

Comments
 (0)