latest janet build with patched config #1303
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: Build | |
on: [push, pull_request] | |
env: | |
BUILD_TYPE: MinSizeRel | |
jobs: | |
# === Windows XP === | |
winxp: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- name: Build | |
shell: cmd | |
run: | | |
git apply build/windows/janet.patch | |
cd build | |
cmake -G "Visual Studio 16 2019" -A Win32 -T v141_xp -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DBUILD_STUB=On .. | |
cmake --build . --config %BUILD_TYPE% --parallel | |
- name: Deploy | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "tic80-winxp" | |
path: build/bin/tic80.exe | |
- name: Deploy stubs | |
uses: actions/upload-artifact@v3 | |
with: | |
name: "tic80-winxp-stub" | |
path: build/bin/tic80*.exe |