Skip to content

Commit

Permalink
Revert previous changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Isembart authored Jul 7, 2024
1 parent cfbfb2f commit ea628c3
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@ jobs:
fail-fast: false
matrix:
platform:
- { name: Windows VS2019, os: windows-2019 }
- { name: Windows VS2022, os: windows-2022 }
- { name: Windows MinGW, os: windows-2019, generator: "MinGW Makefiles" }
- { name: Linux GCC, os: ubuntu-latest }
- { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
- { name: macOS, os: macos-latest }
- { name: Windows VS2019, os: windows-2019 }
- { name: Windows VS2022, os: windows-2022 }
- { name: Linux GCC, os: ubuntu-latest }
- { name: Linux Clang, os: ubuntu-latest, flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
- { name: macOS, os: macos-latest }
config:
- { name: Shared, flags: -DBUILD_SHARED_LIBS=TRUE }
- { name: Static, flags: -DBUILD_SHARED_LIBS=FALSE }
Expand All @@ -31,12 +30,7 @@ jobs:

- name: Configure
shell: bash
run: |
GENERATOR_OPTION=""
if [ -n "${{ matrix.platform.generator }}" ]; then
GENERATOR_OPTION="-G '${{ matrix.platform.generator }}'"
fi
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=install $GENERATOR_OPTION ${{ matrix.platform.flags }} ${{ matrix.config.flags }}
run: cmake -S . -B build -DCMAKE_INSTALL_PREFIX=install ${{matrix.platform.flags}} ${{matrix.config.flags}}

- name: Build
shell: bash
Expand Down

0 comments on commit ea628c3

Please sign in to comment.