Store some changes used for megaminx explorations. #539
This file contains hidden or 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: make build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make | |
- run: ./twsearch -g samples/2x2x2.tws | |
build-wasm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make clean | |
# https://medium.com/wasmer/wasienv-wasi-development-workflow-for-humans-1811d9a50345 | |
- run: pip install wasienv --upgrade | |
- run: wasienv install-sdk unstable | |
- run: curl https://get.wasmer.io -sSfL | sh | |
- run: make -f Makefile-wasm | |
- run: source /home/runner/.wasmer/wasmer.sh && wasmer twsearch.wasm |