Skip to content

Commit

Permalink
ci: temporarily skip the linux-race job
Browse files Browse the repository at this point in the history
The `linux-race` job is currently consistently failing in CI (both pre-
and post-merge). This is being tracked in #2159.

Temporarily skip the job while the cause is investigated.

Touches #2159.
  • Loading branch information
nicktrav committed Dec 1, 2022
1 parent a3c599e commit a08baf4
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,21 @@ jobs:

- run: make crossversion-meta

linux-race:
name: go-linux-race
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.18"

- run: make testrace TAGS=
# This job currently (reliably) fails in GitHub actions. Temporarily skip
# while the failures are investigated.
# See: https://github.com/cockroachdb/pebble/issues/2159
#linux-race:
# name: go-linux-race
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
#
# - name: Set up Go
# uses: actions/setup-go@v2
# with:
# go-version: "1.18"
#
# - run: make testrace TAGS=

linux-no-invariants:
name: go-linux-no-invariants
Expand Down

0 comments on commit a08baf4

Please sign in to comment.