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

feat: install also ip6 in linux-lcg

parent 0841e73a
No related branches found
No related tags found
1 merge request!55fix: remove LCG99 from linux-lcg workflow
...@@ -18,8 +18,18 @@ jobs: ...@@ -18,8 +18,18 @@ jobs:
with: with:
release-platform: ${{ matrix.LCG }} release-platform: ${{ matrix.LCG }}
run: | 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 cmake --build build -- install
# link ip6 into install
ln -sf ../ip6/ip6 ${PREFIX}/share/ecce/ip6
ubuntu-2204: ubuntu-2204:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
...@@ -38,3 +48,4 @@ jobs: ...@@ -38,3 +48,4 @@ jobs:
run: | run: |
cmake -B build -S . cmake -B build -S .
cmake --build build -- install cmake --build build -- install
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment