diff options
author | Valery Piashchynski <[email protected]> | 2021-01-07 23:07:25 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-07 23:07:25 +0300 |
commit | db5c07cbfb2d345e745a1e7a070b58f3b2c4297f (patch) | |
tree | d5201f75c001db875dfa76486df4ea3120cce9a9 | |
parent | 033df4f423ddb25afd9d922acbe1fe077b3dc230 (diff) |
Exclude MacOS from the CIv2.0.0-beta5
-rw-r--r-- | .github/workflows/build.yml | 29 |
1 files changed, 1 insertions, 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: <https://github.com/actions/setup-go> @@ -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: <https://github.com/codecov/codecov-action> if: ${{ matrix.os == 'ubuntu-latest' }} # codecov only from linux with: |