Run tests on Apple M1 #361
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: Emscripten build | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.job }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-name: xsimd | |
create-args: >- | |
microsoft::playwright | |
python | |
init-shell: bash | |
- name: Build script | |
shell: bash -el {0} | |
run: | | |
echo "Build script for wasm" | |
playwright install | |
./test/test_wasm/test_wasm.sh |