This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
Smoke Tests in CI #3
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
name: bridge | |
on: | |
push: | |
paths: | |
- "bridges/snowbridge/**" | |
- "!bridges/snowbridge/README.md" | |
- "!bridges/snowbridge/LICENSE" | |
branches: | |
- snowbridge | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
smoketests: | |
runs-on: snowbridge-runner | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: -C debuginfo=1 | |
outputs: | |
success: ${{ steps.run_e2e_stack.outcome == 'success' }} | |
steps: | |
- name: Set build directory environment variable | |
run: echo "OUTPUT_DIR=${GITHUB_WORKSPACE}/tmp" >> $GITHUB_ENV | |
- run: mkdir -p $OUTPUT_DIR | |
- uses: actions/checkout@v2 | |
with: | |
repository: snowfork/snowbridge | |
ref: smoketests-ci | |
path: snowbridge | |
submodules: "true" | |
- run: rm -f snowbridge/polkadot-sdk | |
- uses: actions/checkout@v2 | |
with: | |
repository: snowfork/polkadot-sdk | |
ref: smoketests-ci | |
path: snowbridge/polkadot-sdk | |
- uses: arduino/setup-protoc@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/cache@v1 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-cargo- | |
- uses: cachix/install-nix-action@v22 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: run E2E stack | |
id: run_e2e_stack | |
run: | | |
cd snowbridge | |
nix develop -c sh -c ' | |
./scripts/init.sh && | |
cd web/packages/test && | |
echo "DIR IS: ${{ env.OUTPUT_DIR }}" && | |
(./scripts/start-services.sh > "${{ env.OUTPUT_DIR }}/start-services.log" 2>&1 &) && | |
sleep 10 && | |
./scripts/check-relayer.sh && | |
./scripts/run-smoketests.sh' | |
continue-on-error: true | |
- name: Check output dir | |
run: "env | grep OUTPUT_DIR" | |
- name: Check log file exists | |
run: "cd ${{ env.OUTPUT_DIR }} && ls" | |
- name: Save start-services log file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: start-services.log | |
path: "${{ env.OUTPUT_DIR }}/start-services.log" | |
- name: check E2E test outcome | |
if: ${{ steps.run_e2e_stack.outcome != 'success' }} | |
run: | | |
echo "E2E tests failed" | |
exit 1 |