-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gh action to run e2e tests #1247
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e482447
gh action to run e2e tests
ermalkaleci d910d87
fix gh action
ermalkaleci 0a4887d
update gh action
ermalkaleci 8d2d0e2
make e2e-tests repo a submodule
ermalkaleci 99d5760
update gh action
ermalkaleci 8dd68f2
update gh action
ermalkaleci File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: E2E Tests | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ master ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | ||
|
||
jobs: | ||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the source code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Clone e2e-tests | ||
run: git clone https://github.com/AstarNetwork/e2e-tests.git --depth 1 | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
cache: 'yarn' | ||
cache-dependency-path: e2e-tests/yarn.lock | ||
|
||
- name: Install deps | ||
run: sudo apt -y install protobuf-compiler | ||
|
||
- name: Install & display rust toolchain | ||
run: rustup show | ||
|
||
- name: Check targets are installed correctly | ||
run: rustup target list --installed | ||
|
||
- name: Build Astar & Shiden runtimes | ||
run: cargo build --release --features astar,shiden | ||
|
||
- name: Copy runtimes into test folder | ||
run: | | ||
cp target/release/wbuild/astar-runtime/astar_runtime.compact.compressed.wasm e2e-tests/wasm/astar_runtime.wasm | ||
cp target/release/wbuild/shiden-runtime/shiden_runtime.compact.compressed.wasm e2e-tests/wasm/shiden_runtime.wasm | ||
|
||
- name: Install dependencies | ||
working-directory: e2e-tests | ||
run: yarn --immutable | ||
|
||
- name: Update env | ||
working-directory: e2e-tests | ||
run: yarn update-env | ||
|
||
- name: Run e2e test with the new runtimes | ||
working-directory: e2e-tests | ||
run: yarn test | ||
env: | ||
ASTAR_WASM: wasm/astar_runtime.wasm | ||
SHIDEN_WASM: wasm/astar_runtime.wasm |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This won't work as you expect it. We don't have per-runtime feature flags implemented.
Perhaps you should use
cargo build --release -p astar-runtime -p shiden-runtime