From c2f6702da3c81531aab56d53aeb8a40f55a59feb Mon Sep 17 00:00:00 2001 From: Rushaway Date: Tue, 10 Oct 2023 01:52:24 +0200 Subject: [PATCH] Ci: drop mac os support --- .github/workflows/ci.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a19bb9f7..dadcded10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, windows-2019, macos-10.15] + os: [ubuntu-20.04, windows-2019] sourcemod-version: [1.11-dev] include: - os: ubuntu-20.04 @@ -18,9 +18,6 @@ jobs: - os: windows-2019 target-archs: x86,x86_64 - - os: macos-10.15 - target-archs: x86_64 - steps: - name: Install Linux packages if: runner.os == 'Linux' @@ -91,11 +88,6 @@ jobs: tar -czf ../${{ github.event.repository.name }}-${version}-linux.tar.gz -T <(\ls -1) cd - fi - if [ -d "./macOS/" ]; then - cd ./macOS/ - tar -czf ../${{ github.event.repository.name }}-${version}-mac.tar.gz -T <(\ls -1) - cd - - fi if [ -d "./Windows/" ]; then cd ./Windows/ tar -czf ../${{ github.event.repository.name }}-${version}-windows.tar.gz -T <(\ls -1)