Skip to content

Windows build test4 #11

Windows build test4

Windows build test4 #11

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
run: |
echo $PATH
which make
- name: Build binary
run: bash tool/${{ matrix.script }}