Skip to content

Commit 948bccb

Browse files
committed
changed CI to use utest 1.13.2 for Haxe 3.4.7 and 4.0.5 tests
updated CHANGELOG
1 parent aefb0de commit 948bccb

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/RunCI.hx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,10 @@ class RunCI {
2424
Sys.setCwd(oldCwd);
2525
}
2626

27-
#if (haxe > version ("4.0.5"))
27+
28+
buildSample("samples/munit");
2829
buildSample("samples/utest");
2930
buildSample("samples/buddy");
30-
#end
31-
32-
buildSample("samples/munit");
3331
buildSample("samples/hexunit");
3432
buildSample("samples/tink_unittest");
3533
buildSample("samples/haxeunit");

.github/workflows/main.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ jobs:
2929
- name: install older libs for Haxe 3.4.7
3030
if: matrix.haxe-version == '3.4.7'
3131
run: |
32-
cd ${{github.workspace}}/samples/tink_unittest
33-
npx lix install haxelib:tink_core#1.26.0
32+
(cd ${{github.workspace}}/samples/tink_unittest; npx lix install haxelib:tink_core#1.26.0)
33+
(cd ${{github.workspace}}/samples/utest; npx lix install haxelib:utest#1.13.2)
34+
(cd ${{github.workspace}}/samples/buddy; npx lix install haxelib:utest#1.13.2)
35+
- name: install older libs for Haxe 4.0.5
36+
if: matrix.haxe-version == '4.0.5'
37+
run: |
38+
(cd ${{github.workspace}}/samples/utest; npx lix install haxelib:utest#1.13.2)
39+
(cd ${{github.workspace}}/samples/buddy; npx lix install haxelib:utest#1.13.2)
3440
- name: run samples
3541
run: npx haxe -cp .github/workflows --run RunCI

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 2.0.6 (December 21, 2023)
4+
5+
- added support for upcoming utest version 2.x
6+
37
## 2.0.5 (May 21, 2023)
48

59
- added support for pending tests in buddy, fixes [#26](https://github.com/vshaxe/haxe-test-adapter/issues/26)

0 commit comments

Comments
 (0)