Add the Catch2 install to workflow
This commit is contained in:
parent
f84952d6ae
commit
7055e7dbc0
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
@ -17,6 +17,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install catch2
|
||||||
|
run: |
|
||||||
|
curl -L https://github.com/catchorg/Catch2/archive/v2.13.4.tar.gz -o catch2.tar.gz
|
||||||
|
tar xvf catch2.tar.gz
|
||||||
|
cd Catch2-2.13.4
|
||||||
|
cmake -Bbuild -H. -DBUILD_TESTING=OFF
|
||||||
|
sudo cmake --build build/ --target install
|
||||||
|
|
||||||
- name: Fetch external libs
|
- name: Fetch external libs
|
||||||
run: |
|
run: |
|
||||||
# Download
|
# Download
|
||||||
|
Loading…
Reference in New Issue
Block a user