Reverting to older RI for 32bit #333
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: Compile Test | |
on: [push, pull_request] | |
env: | |
simba-download: https://github.com/Villavu/Simba/releases/download/simba1400-release/Simba-Win32.exe | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
- name: Compile Test | |
shell: bash | |
run: | | |
curl --retry 5 -L -o Simba.exe ${{ env.simba-download }} | |
echo '{$I osr.simba}' > test.simba && ./Simba.exe --compile test.simba | |