-
Notifications
You must be signed in to change notification settings - Fork 20
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
78 changed files
with
8,250 additions
and
140 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,11 @@ jobs: | |
uses: actions-rs/toolchain@v1 | ||
with: | ||
components: rustfmt # rustfmt is required for macros tests. | ||
target: wasm32-unknown-unknown # For building test contracts. | ||
|
||
- name: Build test contracts | ||
working-directory: tests/contracts/hello | ||
run: cargo build --target wasm32-unknown-unknown --release | ||
|
||
- name: Unit tests with coverage | ||
uses: actions-rs/[email protected] | ||
|
@@ -56,6 +61,12 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
# gcc-multilib is required for bindgen to work for SGX. | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install gcc-multilib | ||
- name: Set up Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
|
@@ -324,6 +335,8 @@ jobs: | |
|
||
- name: Set up Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
target: wasm32-unknown-unknown # For building test contracts. | ||
|
||
- name: Set up Go 1.16 | ||
uses: actions/[email protected] | ||
|
Oops, something went wrong.