Skip to content

[ci] Add arm64 support to test suite #39

[ci] Add arm64 support to test suite

[ci] Add arm64 support to test suite #39

Workflow file for this run

name: main
on: [push, pull_request]
jobs:
Windows32:
strategy:
fail-fast: false
matrix:
haxe: [ 4.3.4, latest ]
uses: ./.github/workflows/test.yml

Check failure on line 10 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yml" -> "./.github/workflows/test.yml" (source branch with sha:d900014a2dc9ded74af5b2a290754a3958b1fd93) : No steps defined in `steps` and no workflow called in `uses` for the following jobs: env
name: Test Windows (32bit)
with:
haxe: ${{ matrix.haxe }}
arch: 32
sep: \
ext: .dll
os: windows-latest
Windows64:
strategy:
fail-fast: false
matrix:
haxe: [ 4.3.4, latest ]
uses: ./.github/workflows/test.yml
name: Test Windows (64bit)
with:
haxe: ${{ matrix.haxe }}
arch: 64
sep: \
ext: .dll
os: windows-latest
MacOS:
strategy:
fail-fast: false
matrix:
haxe: [ 4.3.4, latest ]
uses: ./.github/workflows/test.yml
name: Test MacOS
with:
haxe: ${{ matrix.haxe }}
arch: Arm64
sep: /
ext: .dylib
os: macos-latest
Linux32:
strategy:
fail-fast: false
matrix:
haxe: [ 4.3.4, latest ]
uses: ./.github/workflows/test.yml
name: Test Linux (32bit)
with:
haxe: ${{ matrix.haxe }}
arch: 32
sep: /
ext: .dso
os: ubuntu-latest
Linux64:
strategy:
fail-fast: false
matrix:
haxe: [ 4.3.4, latest ]
uses: ./.github/workflows/test.yml
name: Test Linux (64bit)
with:
haxe: ${{ matrix.haxe }}
arch: 64
sep: /
ext: .dso
os: ubuntu-latest