Skip to content

Test

Test #13

Workflow file for this run

name: Isar release - test
on:
push:
branches:
- "*"
jobs:
build_binaries:
name: Build Binaries
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
artifact_name: isar_windows_x64.dll
script: build_windows.sh x64
runs-on: ${{ matrix.os }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Prepare Build
uses: ./.github/actions/prepare-build
- name: Set env
run: echo "ISAR_VERSION=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Checkmake
shell: bash
run: |
echo %PATH%
ls /c/mingw64/bin/
- name: Build binary
run: bash tool/${{ matrix.script }}