fix wasm build #190
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@main | |
- name: win64-vstudio-debug | |
run: python3 fips build win64-vstudio-debug | |
- name: win64-vstudio-release | |
run: python3 fips build win64-vstudio-release | |
- name: chips-test win64-vstudio-debug | |
run: python3 fips run chips-test win64-vstudio-debug | |
mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: osx-make-debug | |
run: python3 fips build osx-make-debug | |
- name: osx-make-release | |
run: python3 fips build osx-make-release | |
- name: chips-test osx-make-debug | |
run: python3 fips run chips-test osx-make-debug | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: prepare | |
run: | | |
sudo apt-get update | |
sudo apt-get install libglu1-mesa-dev mesa-common-dev xorg-dev libasound-dev | |
- name: linux-make-debug | |
run: python3 fips build linux-make-debug | |
- name: linux-make-release | |
run: python3 fips build linux-make-release | |
- name: chips-test linux-make-debug | |
run: python3 fips run chips-test linux-make-debug | |
emscripten: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: install emsdk | |
run: | | |
sudo apt-get install ninja-build | |
python3 fips emsdk install latest | |
- name: wasm-ninja-debug | |
run: python3 fips build wasm-ninja-debug | |
- name: wasm-ninja-release | |
run: python3 fips build wasm-ninja-release |