Skip to content

Commit

Permalink
Experimental catch2 install for github Linux builders
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Apr 13, 2023
1 parent 32556d5 commit d5db77f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,14 @@ jobs:
libzmq3-dev libmagick++-dev libbabl-dev \
libopencv-dev libprotobuf-dev protobuf-compiler \
cargo libomp5 libomp-dev
# Install catch2 package from Ubuntu 22.04
# Install catch2 package from source
git clone https://github.com/catchorg/Catch2.git
pushd Catch2
cmake -Bbuild -H. -DBUILD_TESTING=OFF
cmake --build build/ --target install
popd
wget https://launchpad.net/ubuntu/+archive/primary/+files/catch2_2.13.8-1_amd64.deb
sudo dpkg -i catch2_2.13.8-1_amd64.deb
Expand Down

0 comments on commit d5db77f

Please sign in to comment.