Skip to content

Commit

Permalink
ci: 💚 disable building examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jontitorr committed Jan 20, 2024
1 parent 90eba1d commit 879f1d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
boost_version: 1.81.0

- name: Configure CMake
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.config }}
run: cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.config }} -Dekizu_BUILD_EXAMPLES=OFF
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
CXX: ${{ matrix.gcc-version }}
Expand Down Expand Up @@ -117,11 +117,11 @@ jobs:

- name: Configure CMake (x64)
if: ${{ matrix.arch == 'x64' }}
run: cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -S . -B build -G "Visual Studio ${{ matrix.vs.version }} ${{ matrix.vs.name }}" -A x64 -T host=x64
run: cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -S . -B build -G "Visual Studio ${{ matrix.vs.version }} ${{ matrix.vs.name }}" -A x64 -T host=x64 -Dekizu_BUILD_EXAMPLES=OFF

- name: Configure CMake (x86)
if: ${{ matrix.arch == 'x86' }}
run: cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -S . -B build -G "Visual Studio ${{ matrix.vs.version }} ${{ matrix.vs.name }}" -A Win32 -T host=x86
run: cmake ${{ steps.vcpkg.outputs.vcpkg-cmake-config }} -S . -B build -G "Visual Studio ${{ matrix.vs.version }} ${{ matrix.vs.name }}" -A Win32 -T host=x86 -Dekizu_BUILD_EXAMPLES=OFF

- name: Build
run: cmake --build build --config ${{ matrix.config }}
Expand Down

0 comments on commit 879f1d6

Please sign in to comment.