CI #7
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: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 2 * * *' # run at 2 AM UTC | |
| jobs: | |
| generic: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Get number of CPU cores | |
| uses: SimenB/github-actions-cpu-cores@v2 | |
| - name: Install micromamba | |
| uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| environment-file: environment-dev.yml | |
| - name: Make build directory | |
| run: mkdir build | |
| - name: Configure cmake | |
| shell: bash -l {0} | |
| run: | | |
| cmake .. \ | |
| -DCMAKE_BUILD_TYPE=Release \ | |
| -DXEUS_HASKELL_BUILD_TESTS=ON \ | |
| -DCMAKE_PREFIX_PATH=$CONDA_PREFIX \ | |
| -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX | |
| working-directory: build | |
| - name: Build & Install | |
| shell: bash -l {0} | |
| run: cmake --build . --target install --config Release | |
| working-directory: build | |
| - name: Build C++ tests | |
| shell: bash -l {0} | |
| run: cmake --build . --config Release --target repl_tests | |
| working-directory: build | |
| - name: Run CTest | |
| shell: bash -l {0} | |
| run: ctest --output-on-failure -C Release | |
| working-directory: build | |
| - name: Test | |
| shell: bash -l {0} | |
| run: pytest . --reruns 5 | |
| working-directory: test | |
| emscripten_wasm: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| emsdk_ver: ["3.1.46"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Get number of CPU cores | |
| uses: SimenB/github-actions-cpu-cores@v2 | |
| - name: Install micromamba | |
| uses: mamba-org/setup-micromamba@v1 | |
| with: | |
| environment-file: environment-wasm-build.yml | |
| environment-name: xeus-haskell-wasm-build | |
| - name: Build | |
| shell: bash -l {0} | |
| run: | | |
| micromamba create -f environment-wasm-host.yml --platform=emscripten-wasm32 | |
| mkdir build | |
| pushd build | |
| export EMPACK_PREFIX=$MAMBA_ROOT_PREFIX/envs/xeus-haskell-wasm-build | |
| export PREFIX=$MAMBA_ROOT_PREFIX/envs/xeus-haskell-wasm-host | |
| export CMAKE_PREFIX_PATH=$PREFIX | |
| export CMAKE_SYSTEM_PREFIX_PATH=$PREFIX | |
| emcmake cmake \ | |
| -DCMAKE_BUILD_TYPE=Release \ | |
| -DCMAKE_PREFIX_PATH=$PREFIX \ | |
| -DCMAKE_INSTALL_PREFIX=$PREFIX \ | |
| -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ON \ | |
| .. | |
| make -j${{ steps.cpu-cores.outputs.count }} | |