github actions use lix

This commit is contained in:
2023-04-27 12:36:50 -06:00
parent 27dc08b4af
commit 2718090754

View File

@@ -64,18 +64,22 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
# Set up Kiss runtimes: # Set up Kiss runtimes:
# haxe
- uses: krdlab/setup-haxe@v1.4.1
with:
haxe-version: ${{ matrix.haxe-version }}
# nodejs # nodejs
- uses: actions/setup-node@v3 - uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
# lix
- uses: lix-pm/setup-lix@1.0.0
with:
lix-version: 15.8.9
# python # python
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
# mono # mono
- run: brew install mono || brew link --overwrite mono - run: brew install mono || brew link --overwrite mono
if: ${{ matrix.os == 'macos-latest' }} if: ${{ matrix.os == 'macos-latest' }}
@@ -89,8 +93,7 @@ jobs:
sudo apt update sudo apt update
sudo apt install mono-devel sudo apt install mono-devel
if: ${{ matrix.os == 'ubuntu-latest' }} if: ${{ matrix.os == 'ubuntu-latest' }}
# output debug info
- run: haxe -version
# run target test: # run target test:
- run: echo "${{ matrix.test-target }}" >> $GITHUB_ENV - run: echo "${{ matrix.test-target }}" >> $GITHUB_ENV
- run: ./test.sh - run: ./test.sh