-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #297 from icon-project/soroban/xcall-multi
feat: soroban xcall contracts
- Loading branch information
Showing
79 changed files
with
6,908 additions
and
1 deletion.
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,43 @@ | ||
name: Build and Test Stellar contracts | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- contracts/soroban/** | ||
- libraries/common/rust/** | ||
- .github/workflows/stellar-build-and-test.yml | ||
|
||
defaults: | ||
run: | ||
working-directory: contracts/soroban | ||
jobs: | ||
Build: | ||
name: Build Stellar Contracts | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: Install stable toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: 1.78.0 | ||
target: wasm32-unknown-unknown | ||
override: true | ||
profile: minimal | ||
|
||
- name: Install wasm32 | ||
run: | | ||
rustup target add wasm32-unknown-unknown | ||
cargo install --locked soroban-cli | ||
- name: Build & Test Stellar Contracts | ||
working-directory: contracts/soroban | ||
run: | | ||
soroban contract build |
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
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
Oops, something went wrong.