From 92b36b09f55130671f776ddd3280827d286b440d Mon Sep 17 00:00:00 2001 From: Nick DeLuca Date: Fri, 7 Jan 2022 18:34:11 -0700 Subject: [PATCH] Update CircleCI Docker Version & Temporarily Disable Sims (#1125) * update docker version * temporarily comment out sims in test all --- .circleci/config.yml | 3 ++- Makefile | 10 +++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b12d5fb3..5cd67acb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 . diff --git a/Makefile b/Makefile index ab0b392b..6e7c17e2 100644 --- a/Makefile +++ b/Makefile @@ -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