From: Matt Joiner Date: Tue, 27 Feb 2024 03:49:39 +0000 (+1100) Subject: CI adjustments X-Git-Tag: v1.55.0~11 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=c183e89d4f3a1f23168c31e42448538e17ed433c;p=btrtrc.git CI adjustments --- diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 61651818..43162234 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,9 +15,11 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/actions/go-common - - run: go test -race -count 2 $(go list ./... | grep -v /fs) - - run: go test -race -count 2 ./fs/... + - run: go test -race $(go list ./... | grep -v /fs | grep -v /possum) + continue-on-error: true + - run: go test -race ./fs/... if: ${{ ! contains(matrix.os, 'windows') }} + continue-on-error: true test-benchmarks: runs-on: ubuntu-latest @@ -42,6 +44,7 @@ jobs: - run: go test -run @ -bench . ./... test-386: + timeout-minutes: 5 runs-on: ubuntu-latest strategy: matrix: @@ -50,7 +53,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: ./.github/actions/go-common - - run: GOARCH=386 go test ./... + - run: GOARCH=386 go test $(go list ./... | grep -v /possum) + continue-on-error: true - run: GOARCH=386 go test ./... -run @ -bench . build-wasm: @@ -66,6 +70,7 @@ jobs: run: GOOS=js GOARCH=wasm go build . ./storage ./tracker/... torrentfs-linux: + continue-on-error: true timeout-minutes: 5 runs-on: ${{ matrix.os }} strategy: