Skip to content
Snippets Groups Projects
Commit ea3f4a06 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

feat: install also ip6 in linux-lcg

parent 8ee72ae0
Branches
No related tags found
1 merge request!55fix: remove LCG99 from linux-lcg workflow
......@@ -46,6 +46,15 @@ jobs:
with:
release-platform: ${{ matrix.LCG }}
run: |
cmake -B build -S .
PREFIX=${PWD}/install
# install ip6 repo
git clone https://github.com/eic/ip6.git eic_ip6
pushd eic_ip6
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX}
cmake --build build -- install
popd
# install this repo
cmake -B build -S . -DCMAKE_INSTALL_PREFIX=${PREFIX}
cmake --build build -- install
# link ip6 into install
ln -sf ../ip6/ip6 ${PREFIX}/share/ecce/ip6
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment