forked from wormhole-foundation/example-swap-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
41 additions
and
11 deletions.
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,38 @@ | ||
name: e2e | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
env: | ||
RUSTC_VERSION: 1.75.0 | ||
jobs: | ||
test: | ||
name: bash sh/run_test.sh | ||
runs-on: ubuntu-latest | ||
# Anchor Docker image: https://www.anchor-lang.com/docs/verifiable-builds#images | ||
# container: backpackapp/build:v0.30.0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Foundry | ||
uses: foundry-rs/foundry-toolchain@v1 | ||
with: | ||
version: nightly | ||
- uses: metadaoproject/setup-anchor@v2 | ||
with: | ||
node-version: "20.11.0" | ||
solana-cli-version: "1.18.15" | ||
anchor-version: "0.30.0" | ||
- name: Set default Rust toolchain | ||
run: rustup default stable | ||
- name: make node_modules | ||
run: make node_modules | ||
- name: cd evm && make build | ||
run: cd evm && make build | ||
working-directory: ./evm | ||
- name: bash sh/run_test.sh | ||
run: bash sh/run_test.sh | ||
working-directory: ./e2e |
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 |
---|---|---|
|
@@ -3,20 +3,11 @@ on: | |
push: | ||
branches: | ||
- main | ||
- solana/integration | ||
pull_request: null | ||
pull_request: | ||
|
||
env: | ||
RUSTC_VERSION: 1.75.0 | ||
jobs: | ||
cancel-previous-runs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
make-cargo-test-all: | ||
name: make cargo-test-all | ||
runs-on: ubuntu-latest | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ name: universal-rs | |
|
||
on: | ||
push: | ||
branches: [main] | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
env: | ||
|