feat: speed up PathTest and improve Puzzle Entropy calculation #53
Workflow file for this run
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: C/C++ Emscripten Build | |
| on: | |
| push: | |
| branches: [ "PDB-refactor" ] | |
| pull_request: | |
| branches: [ "PDB-refactor" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Configure Emscripten | |
| shell: bash | |
| run: | | |
| git clone https://github.com/emscripten-core/emsdk.git | |
| ./emsdk/emsdk install latest | |
| ./emsdk/emsdk activate latest | |
| echo "$GITHUB_WORKSPACE/emsdk/upstream/emscripten" >> $GITHUB_PATH | |
| - name: make | |
| working-directory: ./build/web/ | |
| run: make |