This commit is contained in:
Tom Hicks
2025-04-09 20:52:02 -07:00
parent fc817edc30
commit 079aafeb56

View File

@@ -115,16 +115,10 @@ jobs:
sudo apt-get install -y unzip sudo apt-get install -y unzip
if: runner.os == 'Linux' if: runner.os == 'Linux'
# Create build directory
- name: Create Build Directory
shell: bash
run: mkdir -p "${{github.workspace}}/build"
# Configure CMake # Configure CMake
- name: Configure CMake - name: Configure CMake
working-directory: ${{github.workspace}}/build
run: > run: >
cmake ${{github.workspace}} cmake -B ${{github.workspace}}/build -S ${{github.workspace}}
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DTINYTEST_BUILD_SHARED_LIBS=${{ matrix.shared_libs }} -DTINYTEST_BUILD_SHARED_LIBS=${{ matrix.shared_libs }}
-DBUILD_TESTING=ON -DBUILD_TESTING=ON