Skip to content

Commit bc6c039

Browse files
committed
use Haxe 4.0.0
1 parent d239ca2 commit bc6c039

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/checkstyle-linux.yml

Lines changed: 6 additions & 6 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.0-rc.5', 'nightly']
18+
haxe-version: ['3.4.7', '4.0.0', 'nightly']
1919
env:
2020
CC_TEST_REPORTER_ID: 1dff6f89d7179dff5db635c6b4fe64acdd5694c9ed44d7da5f12f0f7d3d163b7
2121
steps:
@@ -25,12 +25,12 @@ jobs:
2525
with:
2626
node-version: 10
2727
- name: Installing codeclimate client
28-
if: matrix.haxe-version == '4.0.0-rc.5'
28+
if: matrix.haxe-version == '4.0.0'
2929
run: |
3030
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
3131
chmod +x ./cc-test-reporter
3232
./cc-test-reporter before-build
33-
- name: NPM install
33+
- name: Run npm install
3434
run: npm ci
3535
- name: Install Haxe version ${{ matrix.haxe-version }}
3636
run: |
@@ -41,7 +41,7 @@ jobs:
4141
run: |
4242
mv haxe_libraries haxe4_libraries
4343
mv haxe3_libraries haxe_libraries
44-
- name: Lix download
44+
- name: Run lix download
4545
run: npx lix download
4646
- name: Print versions
4747
run: |
@@ -67,13 +67,13 @@ jobs:
6767
- name: Run Java tests
6868
run: npx haxe testJava.hxml
6969
- name: Format and upload codeclimate coverage
70-
if: success() && matrix.haxe-version == '4.0.0-rc.5'
70+
if: success() && matrix.haxe-version == '4.0.0'
7171
run: |
7272
( \
7373
cd src; \
7474
../cc-test-reporter format-coverage -t lcov ../lcov.info; \
7575
../cc-test-reporter upload-coverage; \
7676
)
7777
- name: Upload results to codecov
78-
if: success() && matrix.haxe-version == '4.0.0-rc.5'
78+
if: success() && matrix.haxe-version == '4.0.0'
7979
run: bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"

.haxerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "4.0.0-rc.5",
2+
"version": "4.0.0",
33
"resolveLibs": "scoped"
44
}

0 commit comments

Comments
 (0)