Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -956,8 +956,9 @@ jobs:
./emsdk/emsdk activate ${{matrix.emsdk_ver}}
source ./emsdk/emsdk_env.sh
micromamba activate CppInterOp-wasm
git clone --depth=1 https://github.com/compiler-research/xeus-cpp.git
git clone https://github.com/compiler-research/xeus-cpp.git
cd ./xeus-cpp
git reset --hard HEAD~
mkdir build
pushd build
export CMAKE_PREFIX_PATH=${{ env.PREFIX }}
Expand All @@ -980,8 +981,9 @@ jobs:
.\emsdk\emsdk activate ${{matrix.emsdk_ver}}
.\emsdk\emsdk_env.ps1
micromamba activate CppInterOp-wasm
git clone --depth=1 https://github.com/compiler-research/xeus-cpp.git
git clone https://github.com/compiler-research/xeus-cpp.git
cd .\xeus-cpp
git reset --hard HEAD~
mkdir build
pushd build
$env:CMAKE_PREFIX_PATH="${{ env.PREFIX }}"
Expand Down
Loading