Add windows installer #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
linux-install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run script | |
run: ${{ github.workspace }}/./install.sh | |
- name: Add toolchain to path | |
run: echo "/home/autobuild/tools/win32/bin" >> $GITHUB_PATH | |
- name: Test run | |
run: | | |
kos32-gcc -v | |
kos32-g++ -v | |
windows-install: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install depends | |
run: | | |
choco install wget | |
choco install 7zip | |
- name: Run script | |
run: ${{ github.workspace }}/install.bat | |
- name: Add toolchain to path | |
run: echo "C:\MinGW\msys\1.0\home\autobuild\tools\win32\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: Test run | |
run: | | |
kos32-gcc -v | |
kos32-g++ -v | |