Update CircleCI Docker Version & Temporarily Disable Sims (#1125)

* update docker version

* temporarily comment out sims in test all
This commit is contained in:
Nick DeLuca 2022-01-07 18:34:11 -07:00 committed by GitHub
parent 8b53fa61c5
commit 92b36b09f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -105,7 +105,8 @@ jobs:
- image: circleci/buildpack-deps:stretch
steps:
- checkout
- setup_remote_docker
- setup_remote_docker:
version: 20.10.11
- run:
name: Build Docker image
command: docker build -t $IMAGE_NAME:$CIRCLE_BRANCH .

View File

@ -266,12 +266,12 @@ test-all: build
# basic app tests
@go test ./app -v
# basic simulation (seed "4" happens to not unbond all validators before reaching 100 blocks)
@go test ./app -run TestFullAppSimulation -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
#@go test ./app -run TestFullAppSimulation -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
# other sim tests
@go test ./app -run TestAppImportExport -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
@go test ./app -run TestAppSimulationAfterImport -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
@# AppStateDeterminism does not use Seed flag
@go test ./app -run TestAppStateDeterminism -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
#@go test ./app -run TestAppImportExport -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
#@go test ./app -run TestAppSimulationAfterImport -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
# AppStateDeterminism does not use Seed flag
#@go test ./app -run TestAppStateDeterminism -Enabled -Commit -NumBlocks=100 -BlockSize=200 -Seed 4 -v -timeout 24h
# run module tests and short simulations
test-basic: test