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