diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 387ba3c90..ff5974e3a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: build_type: [Debug, Release] - compiler: [gcc, clang] + compiler: [gcc] runs-on: ubuntu-latest steps: - name: Checkout Repository @@ -30,12 +30,6 @@ jobs: version: latest platform: x64 - - name: Install Clang - if: ${{matrix.compiler == 'clang'}} - uses: KyleMayes/install-llvm-action@v1.9.0 - with: - version: '17' - - name: Configure CMake run: cmake -G "Unix Makefiles" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DSTUDIOMODELPP_BUILD_TESTS=ON