From db5c07cbfb2d345e745a1e7a070b58f3b2c4297f Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Thu, 7 Jan 2021 23:07:25 +0300 Subject: Exclude MacOS from the CI --- .github/workflows/build.yml | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8bfdf399..1f67b944 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: matrix: php: ["7.4", "8.0"] go: ["1.14", "1.15"] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest] steps: - name: Set up Go ${{ matrix.go }} uses: actions/setup-go@v2 # action page: @@ -126,33 +126,6 @@ jobs: docker-compose -f ./tests/docker-compose.yaml down cat ./coverage-ci/*.txt > ./coverage-ci/summary.txt - - name: Run golang tests on MacOS without docker - if: ${{ matrix.os == 'macos-latest' }} - run: | - go test -v -race -cover -tags=debug ./utils - go test -v -race -cover -tags=debug ./pkg/pipe - go test -v -race -cover -tags=debug ./pkg/pool - go test -v -race -cover -tags=debug ./pkg/socket - go test -v -race -cover -tags=debug ./pkg/worker - go test -v -race -cover -tags=debug ./tests/plugins/http - go test -v -race -cover -tags=debug ./tests/plugins/informer - go test -v -race -cover -tags=debug ./tests/plugins/reload - go test -v -race -cover -tags=debug ./tests/plugins/server - go test -v -race -cover -tags=debug ./tests/plugins/checker - go test -v -race -cover -tags=debug ./tests/plugins/config - go test -v -race -cover -tags=debug ./tests/plugins/gzip - go test -v -race -cover -tags=debug ./tests/plugins/headers - go test -v -race -cover -tags=debug ./tests/plugins/logger - go test -v -race -cover -tags=debug ./tests/plugins/metrics - go test -v -race -cover -tags=debug ./tests/plugins/redis - go test -v -race -cover -tags=debug ./tests/plugins/resetter - go test -v -race -cover -tags=debug ./tests/plugins/rpc - go test -v -race -cover -tags=debug ./tests/plugins/static - go test -v -race -cover -tags=debug ./plugins/kv/boltdb - go test -v -race -cover -tags=debug ./plugins/kv/memory - go test -v -race -cover -tags=debug ./tests/plugins/kv/boltdb - go test -v -race -cover -tags=debug ./tests/plugins/kv/memory - - uses: codecov/codecov-action@v1 # Docs: if: ${{ matrix.os == 'ubuntu-latest' }} # codecov only from linux with: -- cgit v1.2.3