From ce76d03c159affdb6086e281d7f74ee9d190cbaf Mon Sep 17 00:00:00 2001 From: Kirill Date: Thu, 11 Nov 2021 02:43:19 +0200 Subject: [PATCH] Delete Buildkite --- .buildkite/pipeline.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .buildkite/pipeline.yml diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml deleted file mode 100644 index 69a78a36..00000000 --- a/.buildkite/pipeline.yml +++ /dev/null @@ -1,36 +0,0 @@ -steps: - - label: "build all solidity contracts" - command: | - docker-compose up compile-solidity - git status - changed_files=$$(git status --porcelain --untracked-files=no | wc -l) - if [ $$changed_files -gt 0 ]; then - echo 'contract changed, please rebuild contract' - exit 1 - fi - - - label: "build all rust contracts" - command: | - make - changed_files=$$(git status --porcelain --untracked-files=no | wc -l) - if [ $$changed_files -gt 0 ]; then - echo 'contract changed, please rebuild contract' - exit 1 - fi - - - label: "erc20 connector" - command: | - source ~/.nvm/nvm.sh - source ~/.yarn/yarn.sh - cd erc20-connector - yarn - yarn test - - - label: "bridge token factory" - env: - BRIDGE_TOKEN: ../../res/bridge_token.wasm - command: | - source ~/.cargo/env - make - cd bridge-token-factory - cargo test --all