From 632337cb6206ee5dd88c42171cb15198817e84f0 Mon Sep 17 00:00:00 2001 From: Jacob Gadikian Date: Fri, 19 Aug 2022 00:44:17 +0700 Subject: [PATCH] Update .gitpod.yml (#34) * Update .gitpod.yml * Update ci.yml * Update ci.yml --- .github/workflows/ci.yml | 15 +++------------ .gitpod.yml | 2 +- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e49b1e544..91b801f17 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,15 +5,7 @@ on: - master pull_request: jobs: - cleanup-runs: - runs-on: ubuntu-latest - steps: - - uses: rokroskar/workflow-run-cleanup-action@master - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'" - - Test: + RunTests: # The custom image here contains pre-built libraries for leveldb and # rocksdb, which are needed to build and test those modules. # To update the container image, see docker.yml. @@ -21,7 +13,6 @@ jobs: container: tendermintdev/docker-tm-db-testing steps: - uses: actions/checkout@v3 - - name: test & coverage report creation - run: | - CGO_ENABLED=1 go test ./... -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic -tags=memdb,goleveldb,cleveldb,rocksdb -v + - name: run tests + run: go test ./... -mod=readonly -timeout 8m -race -tags=memdb,goleveldb,cleveldb,rocksdb -v diff --git a/.gitpod.yml b/.gitpod.yml index 4b56b6b70..cc5efb27d 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,6 +2,6 @@ # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file) # and commit this file to your remote git repository to share the goodness with others. -image: tendermintdev/docker-tm-db-testing +image: ghcr.io/cosmos/cosmos-db/build-test:latest # this means that there's a one-click known good environment available to developers.