Transfer test #76
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs bridge and perform transfers from and to ethereum. | |
name: Transfer test | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test transfers | |
runs-on: [self-hosted, Linux, X64, large] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: "Install Rust toolchain" | |
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v6 | |
- name: Run tests | |
timeout-minutes: 30 | |
shell: bash | |
run: | | |
make local-bridgenet | |
sleep 60 # wait 1 minute for everything to be running | |
make deploy-docker | |
DOCKER_RELAYER_COMPILE_CONTRACTS=no-compile make run-relayers | |
make e2e-tests | |
slack-notification: | |
name: Slack notification | |
runs-on: ubuntu-20.04 | |
needs: [test] | |
if: > | |
!cancelled() && | |
github.event_name != 'workflow_dispatch' | |
steps: | |
- name: Send Slack message | |
uses: Cardinal-Cryptography/github-actions/slack-notification@v7 | |
with: | |
notify-on: "failure" | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_INCOMING_WEBHOOK_MOST_CI_NOTIFICATIONS }} |