Install Catch2

This commit is contained in:
Skye Deving 2021-01-26 20:57:12 -06:00
parent 2e66e802a1
commit 0a1dc4a234

View File

@ -16,6 +16,15 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - 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 - name: Download BASS
run: | run: |
mkdir bass mkdir bass