ci: Remove the macOS runner

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan 2023-03-30 13:23:54 +03:00
parent ae55569a62
commit e0eb0aa034
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF
1 changed files with 0 additions and 29 deletions

View File

@ -64,32 +64,3 @@ jobs:
# current issue is resolved.
GO_TEST_ARGS: ''
run: make test
# Runs 'make test' on MacOS to ensure the continuous support for contributors
# using it as a development environment.
darwin-amd64:
strategy:
matrix:
os: [macos-12]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- name: Setup Go
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
with:
go-version: 1.20.x
cache-dependency-path: |
**/go.sum
**/go.mod
- name: Install and configure Docker using colima
# Ref: https://github.com/abiosoft/colima/blob/main/docs/FAQ.md#cannot-connect-to-the-docker-daemon-at-unixvarrundockersock-is-the-docker-daemon-running
run: |
brew install docker
colima start
echo "DOCKER_HOST=unix://$HOME/.colima/default/docker.sock" >> $GITHUB_ENV
- name: Run tests
run: make test
env:
SKIP_COSIGN_VERIFICATION: true