CI #1047
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 2 * * *' # run at 2 AM UTC | |
jobs: | |
unix: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: .github/ci_env.yml | |
- name: Create project with cookiecutter | |
shell: bash -l {0} | |
run: | |
cookiecutter . --config-file .github/ci_context_no_wasm.yml --no-input -f | |
- name: Create and activate env | |
shell: bash -l {0} | |
run: | | |
cd xeus-mylang | |
micromamba create -f environment-dev.yml -y --name xeus_cookiecutter_test_env | |
micromamba activate xeus_cookiecutter_test_env | |
- name: Configure cmake | |
shell: bash -l {0} | |
run: | | |
micromamba activate xeus_cookiecutter_test_env | |
cd xeus-mylang | |
mkdir -p bld | |
cd bld | |
cmake .. \ | |
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \ | |
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX | |
- name: Build | |
shell: bash -l {0} | |
run: | | |
cd xeus-mylang/bld | |
make -j8 | |
- name: Install | |
shell: bash -l {0} | |
run: | | |
cd xeus-mylang/bld | |
make install | |
- name: Test | |
shell: bash -l {0} | |
run: | | |
micromamba activate xeus_cookiecutter_test_env | |
cd xeus-mylang/test | |
pytest . --reruns 5 | |
win: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
init-shell: >- | |
powershell | |
cmd.exe | |
environment-file: .github/ci_env.yml | |
- name: Create project with cookiecutter | |
shell: powershell | |
run: | |
cookiecutter . --no-input -f | |
- name: Create and activate env | |
shell: powershell | |
run: | | |
micromamba create -f xeus-mylang\environment-dev.yml -y --name xeus_cookiecutter_test_env | |
micromamba activate xeus_cookiecutter_test_env | |
- name: Configure cmake | |
shell: cmd /C CALL {0} | |
run: | | |
micromamba activate xeus_cookiecutter_test_env | |
cd xeus-mylang | |
mkdir -p bld | |
cd bld | |
cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DXEUS_BUILD_TESTS=ON -DDEPENDENCY_SEARCH_PREFIX="%CONDA_PREFIX%\Library" -DCMAKE_PREFIX_PATH="%CONDA_PREFIX%\Library" -DCMAKE_INSTALL_PREFIX="%CONDA_PREFIX%" | |
- name: Build and install | |
shell: cmd /C CALL {0} | |
run: | | |
micromamba activate xeus_cookiecutter_test_env | |
cd xeus-mylang/bld | |
set CL=/MP | |
nmake install | |
- name: Test | |
shell: cmd /C CALL {0} | |
run: | | |
micromamba activate xeus_cookiecutter_test_env | |
cd xeus-mylang/test | |
pytest . --reruns 5 | |
emscripten_wasm: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
emsdk_ver: ["2.0.34", "3.1.3", "latest"] | |
# os: [ubuntu-latest, "macos-latest"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Make install dir | |
shell: bash -l {0} | |
run: | | |
mkdir -p $GITHUB_WORKSPACE/custom_sysroot | |
- name: Install emsdk | |
shell: bash -l {0} | |
run: | | |
git clone https://github.com/emscripten-core/emsdk.git /opt/emsdk | |
cd /opt/emsdk | |
./emsdk install ${{matrix.emsdk_ver}} | |
- name: Install micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: .github/ci_env.yml | |
- name: Create project with cookiecutter | |
shell: bash -l {0} | |
run: | |
cookiecutter . --config-file .github/ci_context_wasm.yml --no-input -f | |
- name: Install xtl | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
mkdir -p /opt/xtl/build | |
git clone https://github.com/xtensor-stack/xtl.git /opt/xtl/src | |
cd /opt/xtl/src | |
git checkout 0.7.2 | |
cd /opt/xtl/build | |
emcmake cmake ../src/ -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/custom_sysroot | |
emmake make -j2 install | |
- name: Install nlohmann-json | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
mkdir -p /opt/nlohmannjson/build | |
git clone https://github.com/nlohmann/json.git /opt/nlohmannjson/src | |
cd /opt/nlohmannjson/src | |
git checkout v3.9.0 | |
cd /opt/nlohmannjson/build | |
emcmake cmake ../src/ -DJSON_BuildTests=OFF -DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/custom_sysroot | |
emmake make -j2 install | |
- name: Install xeus | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
mkdir -p /opt/xeus/build | |
git clone https://github.com/jupyter-xeus/xeus.git /opt/xeus/src | |
cd /opt/xeus/src | |
git checkout 3.0.5 | |
cd /opt/xeus/build | |
emcmake cmake ../src \ | |
-DXEUS_EMSCRIPTEN_WASM_BUILD=ON \ | |
-DXEUS_BUILD_TESTS=OFF \ | |
-Dxtl_DIR=$GITHUB_WORKSPACE/custom_sysroot/share/cmake/xtl \ | |
-Dnlohmann_json_DIR=$GITHUB_WORKSPACE/custom_sysroot/lib/cmake/nlohmann_json \ | |
-DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/custom_sysroot | |
emmake make -j2 | |
emmake make -j2 install | |
- name: Install xeus-lite | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
mkdir -p /opt/xeus-lite/build | |
git clone https://github.com/jupyter-xeus/xeus-lite.git /opt/xeus-lite/src | |
cd /opt/xeus-lite/src | |
git checkout 1.0.1 | |
cd /opt/xeus-lite/build | |
emcmake cmake ../src \ | |
-DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/custom_sysroot \ | |
-Dnlohmann_json_DIR=$GITHUB_WORKSPACE/custom_sysroot/lib/cmake/nlohmann_json \ | |
-Dxtl_DIR=$GITHUB_WORKSPACE/custom_sysroot/share/cmake/xtl \ | |
-Dxeus_DIR=$GITHUB_WORKSPACE/custom_sysroot/lib/cmake/xeus | |
emmake make -j2 | |
emmake make -j2 install | |
- name: Configure cmake rendered project | |
shell: bash -l {0} | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
cd $GITHUB_WORKSPACE/xeus-mylang | |
mkdir -p bld | |
cd bld | |
emcmake cmake .. \ | |
-DCMAKE_INSTALL_PREFIX=$GITHUB_WORKSPACE/custom_sysroot \ | |
-DXEUS_MYLANG_EMSCRIPTEN_WASM_BUILD=ON \ | |
-Dxtl_DIR=$GITHUB_WORKSPACE/custom_sysroot/share/cmake/xtl \ | |
-Dnlohmann_json_DIR=$GITHUB_WORKSPACE/custom_sysroot/lib/cmake/nlohmann_json \ | |
-Dxeus_DIR=$GITHUB_WORKSPACE/custom_sysroot/lib/cmake/xeus \ | |
-Dxeus-lite_DIR=$GITHUB_WORKSPACE/custom_sysroot/lib/cmake/xeus-lite | |
- name: Build rendered project | |
shell: bash | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
cd $GITHUB_WORKSPACE/xeus-mylang/bld | |
emmake make -j8 | |
- name: Install rendered project | |
shell: bash -l {0} | |
run: | | |
cd /opt/emsdk | |
./emsdk activate ${{matrix.emsdk_ver}} | |
source "/opt/emsdk/emsdk_env.sh" | |
cd $GITHUB_WORKSPACE/xeus-mylang/bld | |
make install | |
push: | |
needs: [unix, win, emscripten_wasm] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: .github/ci_env.yml | |
- name: Create project with cookiecutter | |
shell: bash -l {0} | |
run: | |
cookiecutter . --config-file .github/ci_context_wasm.yml --no-input -f | |
- name: Push to rendered branch | |
if: github.repository == 'jupyter-xeus/xeus-cookiecutter' && github.ref == 'refs/heads/main' | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: rendered | |
FOLDER: xeus-mylang | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MESSAGE: "added rendered: ({sha}) {msg}" | |
# GITHUB_TOKEN permissions cannot be changed for forks | |
continue-on-error: true |