From fb81943e764329835ebdb526ebf7fa2040c46da6 Mon Sep 17 00:00:00 2001 From: Dan Miller Date: Fri, 1 Feb 2019 12:55:13 -0330 Subject: [PATCH] Add test_state_petersburg job to circleci config --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d118278987..f55b92815d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -64,6 +64,15 @@ jobs: - run: name: testStateConstantinople command: npm run testStateConstantinople + test_state_petersburg: + <<: *defaults + steps: + - attach_workspace: + at: ~/project + - *restore_node_modules + - run: + name: testStatePetersburg + command: npm run testStatePetersburg test_blockchain: <<: *defaults steps: @@ -99,6 +108,9 @@ workflows: - test_state_constantinople: requires: - install + - test_state_petersburg: + requires: + - install - test_blockchain: requires: - install