diff options
| author | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-09 12:09:08 -0600 |
|---|---|---|
| committer | Skye Deving <76892045+skyedeving@users.noreply.github.com> | 2021-01-28 11:05:42 -0600 |
| commit | 7055e7dbc06ad23195ad0056ae87b2786d446dc2 (patch) | |
| tree | 302f478d4661438414b3e8e1bfd5ccfa74fbe239 | |
| parent | f84952d6ae95e52b40b61a271ab259c4b9df8a9e (diff) | |
Add the Catch2 install to workflow
| -rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a5832041..471d4b81 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,6 +17,14 @@ jobs: steps: - 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 run: | # Download |
