From 25dadbf6caf68955fe835a0325108e9a0c97dfde Mon Sep 17 00:00:00 2001 From: Toni Melisma <59022391+tonimelisma@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:25:57 -0800 Subject: [PATCH] drop macos test automation --- .github/workflows/build.yml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df401276..2b1487a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,33 +5,21 @@ on: [push, pull_request] jobs: build: name: Build - runs-on: ${{ matrix.os }} - env: - CGO_CFLAGS_ALLOW: -Xpreprocessor - strategy: - matrix: - os: [ubuntu-latest, macos-latest] + runs-on: ubuntu-latest steps: - name: Set up Go 1.x uses: actions/setup-go@v2 with: - go-version: ^1.13 + go-version: ^1.21 - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Install linux deps - if: matrix.os == 'ubuntu-latest' run: | - sudo apt-get -y install libopenjp2-7 sudo apt-get -y install libvips-dev - - name: Install macos deps - if: matrix.os == 'macos-latest' - run: | - brew install vips - - name: Get dependencies run: | go get -v -t -d ./...