Acknowledge the interrupt request #545
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_and_test | |
on: [push, pull_request] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare | |
run: | | |
mkdir workspace | |
cd workspace | |
git clone https://github.com/floooh/chips-test | |
cd chips-test | |
- name: win64-vstudio-debug | |
run: | | |
cd workspace/chips-test | |
python fips build win64-vstudio-debug | |
- name: win64-vstudio-release | |
run: | | |
cd workspace/chips-test | |
python fips build win64-vstudio-release | |
- name: chips-test win64-vstudio-debug | |
run: | | |
cd workspace/chips-test | |
python fips run chips-test win64-vstudio-debug | |
mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare | |
run: | | |
mkdir workspace | |
cd workspace | |
git clone https://github.com/floooh/chips-test | |
cd chips-test | |
- name: osx-make-debug | |
run: | | |
cd workspace/chips-test | |
python fips build osx-make-debug | |
- name: osx-make-release | |
run: | | |
cd workspace/chips-test | |
python fips build osx-make-release | |
- name: chips-test osx-make-debug | |
run: | | |
cd workspace/chips-test | |
python fips run chips-test osx-make-debug | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev | |
mkdir workspace | |
cd workspace | |
git clone https://github.com/floooh/chips-test | |
cd chips-test | |
- name: linux-make-debug | |
run: | | |
cd workspace/chips-test | |
python fips build linux-make-debug | |
- name: linux-make-release | |
run: | | |
cd workspace/chips-test | |
python fips build linux-make-release | |
- name: chips-test linux-make-debug | |
run: | | |
cd workspace/chips-test | |
python fips run chips-test linux-make-debug | |
emscripten: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare | |
run: | | |
sudo apt-get install ninja-build | |
mkdir workspace | |
cd workspace | |
git clone https://github.com/floooh/chips-test | |
cd chips-test | |
python fips emsdk install latest | |
- name: wasm-ninja-debug | |
run: | | |
cd workspace/chips-test | |
python fips build wasm-ninja-debug | |
- name: wasm-ninja-release | |
run: | | |
cd workspace/chips-test | |
python fips build wasm-ninja-release | |