From a559a929aa7b6288aba282f3cf31501572c020d8 Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sun, 4 Aug 2024 15:13:23 -0400 Subject: [PATCH] fix(ci): Remove Mac and Dota from CI --- .github/workflows/ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b8b9bb..b89b907 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,15 +28,11 @@ jobs: compiler_cc: clang-6.0 compiler_cxx: clang++-6.0 compiler_install: clang-6.0 - - os: macos-latest - os_short: mac - compiler_cc: clang - compiler_cxx: clang++ fail-fast: false runs-on: ${{ matrix.os }} name: ${{ matrix.os_short }}-${{ matrix.compiler_cc }} env: - SDKS: '["episode1","tf2","l4d2","csgo","dota"]' + SDKS: '["episode1","tf2","l4d2","csgo"]' DEPENDENCIES_FOLDER: dependencies DEPENDENCIES_ROOT: ${{ github.workspace }}/dependencies steps: @@ -47,7 +43,7 @@ jobs: - name: Select HL2SDKs if: startsWith(runner.os, 'Windows') - run: echo 'SDKS=["episode1","tf2","l4d2","csgo","dota","insurgency"]' >> $GITHUB_ENV + run: echo 'SDKS=["episode1","tf2","l4d2","csgo","insurgency"]' >> $GITHUB_ENV - name: Cache dependencies uses: actions/cache@v3 @@ -88,7 +84,7 @@ jobs: linux-libc-dev:i386 lib32z1-dev ${{ matrix.compiler_install }} - name: Select clang compiler - if: startsWith(runner.os, 'Linux') || startsWith(runner.os, 'macOS') + if: startsWith(runner.os, 'Linux') run: | echo "CC=${{ matrix.compiler_cc }}" >> $GITHUB_ENV echo "CXX=${{ matrix.compiler_cxx }}" >> $GITHUB_ENV