build: bump MicroHs version to v0.15.3.0 #169
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: CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| generic: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Pixi | |
| uses: prefix-dev/setup-pixi@v0 | |
| with: | |
| cache: true | |
| - name: Configure CMake | |
| shell: bash | |
| run: pixi run -e default prebuild | |
| - name: Build & Install | |
| shell: bash | |
| run: | | |
| pixi run -e default build | |
| pixi run -e default install | |
| - name: Run C++ Test | |
| shell: bash | |
| run: pixi run -e default ctest | |
| - name: Run Python Test | |
| shell: bash | |
| run: pixi run -e default pytest | |
| emscripten_wasm: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| emsdk_ver: ["3.1.73"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Pixi | |
| uses: prefix-dev/setup-pixi@v0 | |
| with: | |
| cache: true | |
| - name: Prepare WASM host | |
| shell: bash | |
| run: pixi install -e wasm-host | |
| - name: Configure | |
| shell: bash | |
| run: pixi run -e wasm-build prebuild | |
| - name: Build | |
| shell: bash | |
| run: pixi run -e wasm-build build | |
| - name: Install | |
| shell: bash | |
| run: pixi run -e wasm-build install |