-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The leveldb wrapper library requires cgo to build.
- Loading branch information
M. J. Fromberger
authored
Nov 8, 2021
1 parent
451c844
commit 63a566e
Showing
1 changed file
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,9 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- name: test & coverage report creation | ||
run: /bin/true | ||
#run: | | ||
# go test ./... -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic -tags=memdb,goleveldb,cleveldb,boltdb,rocksdb,badgerdb -v | ||
#- uses: codecov/[email protected] | ||
# with: | ||
# file: ./coverage.txt | ||
# fail_ci_if_error: true | ||
# | ||
# TODO(creachadair): Temporarily disabled to update CI image. | ||
run: | | ||
CGO_ENABLED=1 go test ./... -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic -tags=memdb,goleveldb,cleveldb,boltdb,rocksdb,badgerdb -v | ||
- uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.txt | ||
fail_ci_if_error: true |