Skip to content

Commit

Permalink
Enable the "eval" compilation target
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Sep 22, 2024
1 parent 2c6c734 commit de1a808
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ${{matrix.target == 'hl' && 'windows-latest' || 'ubuntu-latest'}}
strategy:
matrix:
target: [hl, java, nodejs, php]
target: [eval, hl, java, nodejs, php]
steps:
- name: Fetch sources
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion scripts/Test.hx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** Runs the test suite. **/
function main() {
var exitCode = 0;
for (file in ["hl", "java", "nodejs", "php"]) {
for (file in ["eval", "hl", "java", "nodejs", "php"]) {
Sys.println('> Testing the "$file" target...');
if (Sys.command('haxe test_$file.hxml') != 0) exitCode++;
}
Expand Down
2 changes: 2 additions & 0 deletions test_eval.hxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--interp
share/test.hxml

0 comments on commit de1a808

Please sign in to comment.