Skip to content

Commit

Permalink
use correct var name for condition
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe committed Aug 14, 2024
1 parent 960a7e7 commit 05888e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
haxelib install utest
- name: Install hx4compat
if: matrix.target == latest
if: matrix.haxe-version == 'latest'
run: |
haxelib git hx4compat https://github.com/HaxeFoundation/hx4compat.git
Expand Down
4 changes: 4 additions & 0 deletions tests/RunCi.hx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ class RunCi {
static inline var EXAMPLES_DIR = "../www/examples/";
static var examplesToSkip = [#if (haxe_ver < "4.2.0") "Example-23.hx" #end];
static var exampleTargets = ["Example-20.hx" => Js];
#if haxe5
static var librariesForExamples = ["Example-22.hx" => ["utest", "hx4compat"]];
#else
static var librariesForExamples = ["Example-22.hx" => ["utest"]];
#end

public static function main():Void {
var target:Target = Sys.args()[0];
Expand Down

0 comments on commit 05888e3

Please sign in to comment.