Add string include #119
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 & CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_and_test_windows: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout wren-console | |
uses: actions/checkout@v2 | |
- name: Pin dependencies | |
shell: bash | |
run: | | |
cat WREN_ESSENTIALS >> $GITHUB_ENV | |
- name: Checkout wren-essentials | |
uses: actions/checkout@v2 | |
with: | |
repository: joshgoebel/wren-essentials | |
path: deps/wren-essentials | |
ref: ${{env.WREN_ESSENTIALS}} | |
- name: build | |
run: | | |
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\" | |
dir $Env:GITHUB_WORKSPACE | |
.\MSBuild.exe $Env:GITHUB_WORKSPACE\projects\vs2019\wrenc.vcxproj /p:Configuration="Debug 64bit" /p:Platform="x64" | |
cd $Env:GITHUB_WORKSPACE | |
dir $Env:GITHUB_WORKSPACE | |
.\bin\wrenc_d.exe package.wren install | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wrenc-windows | |
path: | | |
bin/wrenc_d.exe | |
- name: test | |
run: | | |
cd $Env:GITHUB_WORKSPACE | |
python3 .\util\test.py --suffix=_d | |
build_and_test_mac: | |
runs-on: macos-10.15 | |
steps: | |
- name: Checkout wren-console | |
uses: actions/checkout@v2 | |
- name: Pin dependencies | |
run: | | |
cat WREN_ESSENTIALS >> $GITHUB_ENV | |
- name: Checkout wren-essentials | |
uses: actions/checkout@v2 | |
with: | |
repository: joshgoebel/wren-essentials | |
path: deps/wren-essentials | |
ref: ${{env.WREN_ESSENTIALS}} | |
- name: build & test | |
run: | | |
make -j8 -C projects/make.mac/ | |
./bin/wrenc package.wren install | |
python3 ./util/test.py | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wrenc-mac | |
path: | | |
bin/wrenc | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout wren-console | |
uses: actions/checkout@v2 | |
- name: Pin dependencies | |
run: | | |
cat WREN_ESSENTIALS >> $GITHUB_ENV | |
- name: Checkout wren-essentials | |
uses: actions/checkout@v2 | |
with: | |
repository: joshgoebel/wren-essentials | |
path: deps/wren-essentials | |
ref: ${{env.WREN_ESSENTIALS}} | |
- name: build & test | |
run: | | |
make -j8 -C projects/make/ | |
./bin/wrenc package.wren install | |
python3 ./util/test.py | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: wrenc-linux | |
path: | | |
bin/wrenc |