aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSkye Deving <76892045+skyedeving@users.noreply.github.com>2021-01-26 20:57:12 -0600
committerSkye Deving <76892045+skyedeving@users.noreply.github.com>2021-01-28 11:05:42 -0600
commit0a1dc4a234600e71dec963b6a2f040867c693735 (patch)
tree567606ebe14a8eae37e2f70e62f1e4d87d8621f0 /.github
parent2e66e802a17741aa701b067a5210b46bf65f40ba (diff)
Install Catch2
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9522024f..b86b6c21 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,6 +16,15 @@ jobs:
steps:
- uses: actions/checkout@v2
+ - name: Install catch2
+ shell: bash
+ 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: Download BASS
run: |
mkdir bass