Integration for darwinia & crab #9056
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
name: Integration for darwinia & crab | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
workflow_dispatch: | |
jobs: | |
integrate-mainnet: | |
name: Run integrate test v2 on mainnets | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
task: | |
- from: darwinia | |
to: crab | |
- from: crab | |
to: darwinia | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: install dependencies | |
run: yarn install | |
- name: run task | |
env: | |
ORMPIPE_LOG_LEVEL: debug | |
ORMPIPE_SIGNER: ${{ secrets.ORMPIPE_SIGNER }} | |
run: | | |
scripts/ormpipe.sh integration \ | |
send-message-msgport \ | |
--from=${{ matrix.task.from }} \ | |
--to=${{ matrix.task.to }} \ | |
integrate-testnet: | |
name: Run integrate test v2 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
task: | |
- from: sepolia | |
to: arbitrumsepolia | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: install dependencies | |
run: yarn install | |
- name: run task | |
env: | |
ORMPIPE_LOG_LEVEL: debug | |
ORMPIPE_SIGNER: ${{ secrets.ORMPIPE_SIGNER }} | |
run: | | |
scripts/ormpipe.sh integration \ | |
send-message-msgport \ | |
--from=${{ matrix.task.from }} \ | |
--to=${{ matrix.task.to }} |