Skip to content

Commit

Permalink
Basic hxcpp setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Aidan63 committed Apr 28, 2024
1 parent 8209870 commit a38c4b0
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,33 @@ jobs:
name: test ${{ matrix.os }} (${{ matrix.arch }}bit)
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: krdlab/setup-haxe@v1
with:
haxe-version: ${{ inputs.haxe }}

- name: Check
run: haxe --version
- name: Install Haxe Libraries
run: |
haxelib install utest
haxelib git hx4compat https://github.com/HaxeFoundation/hx4compat
haxelib dev hxcpp ${{ github.workspace }}
haxelib list
- name: Build run.n
run: |
cd ${{ github.workspace }}/tools/run
haxe compile.hxml
- name: Build Hxcpp
run: |
cd ${{ github.workspace }}/tools/hxcpp
haxe compile.hxml
- name: Build Cppia
run: |
cd ${{ github.workspace }}/project
haxe compile-cppia.hxml
# - name: Haxe
# working-directory: test/haxe
Expand Down

0 comments on commit a38c4b0

Please sign in to comment.