-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/add-commit-hash-support-to-r2-action
- Loading branch information
Showing
540 changed files
with
39,435 additions
and
17,791 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
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml | ||
name: Basic | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- releases/** | ||
|
||
name: Basic | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
|
@@ -20,7 +22,7 @@ jobs: | |
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.75.0 | ||
toolchain: 1.78.0 | ||
override: true | ||
|
||
- name: Install protoc | ||
|
@@ -29,9 +31,14 @@ jobs: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Cache build artifacts | ||
uses: useblacksmith/rust-cache@v3 | ||
uses: useblacksmith/[email protected] | ||
id: cache | ||
with: | ||
shared-key: "cache" | ||
shared-key: "cache-tests" | ||
|
||
- name: Log crates.toml | ||
if: steps.cache.outputs.cache-hit == 'true' | ||
run: cat /home/runner/.cargo/.crates.toml | ||
|
||
- name: Run tests | ||
uses: actions-rs/cargo@v1 | ||
|
@@ -52,14 +59,29 @@ jobs: | |
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.75.0 | ||
toolchain: 1.78.0 | ||
target: wasm32-unknown-unknown | ||
default: true | ||
override: true | ||
|
||
- name: Install cosmwasm-check compatible toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.75.0 | ||
target: wasm32-unknown-unknown | ||
default: false | ||
override: false | ||
|
||
- name: Cache build artifacts | ||
uses: useblacksmith/rust-cache@v3 | ||
id: cache | ||
uses: useblacksmith/[email protected] | ||
with: | ||
shared-key: "cache" | ||
shared-key: "cache-cosmwasm-compilation" | ||
|
||
- name: Log crates.toml | ||
if: steps.cache.outputs.cache-hit == 'true' | ||
run: cat /home/runner/.cargo/.crates.toml | ||
|
||
- name: Build wasm release | ||
run: | | ||
|
@@ -69,38 +91,83 @@ jobs: | |
(cd $C && cargo build --release --lib --target wasm32-unknown-unknown --locked) | ||
done | ||
- name: Build ITS release | ||
working-directory: ./interchain-token-service | ||
run: cargo build --release --target wasm32-unknown-unknown --locked | ||
|
||
# cosmwasm-check v1.3.x is used to check for compatibility with wasmvm v1.3.x used by Axelar | ||
# Older rust toolchain is required to install cosmwasm-check v1.3.x | ||
- name: Install cosmwasm-check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: install | ||
args: --debug --version 1.3.3 --locked cosmwasm-check | ||
toolchain: 1.75.0 | ||
args: --version 1.3.4 --locked cosmwasm-check | ||
|
||
- name: Check wasm contracts | ||
run: cosmwasm-check ./target/wasm32-unknown-unknown/release/*.wasm | ||
|
||
ampd-compilation: | ||
name: Ampd Release Compilation | ||
runs-on: blacksmith-16vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install stable toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.78.0 | ||
target: wasm32-unknown-unknown | ||
override: true | ||
|
||
- name: Install protoc | ||
uses: arduino/setup-protoc@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Cache build artifacts | ||
id: cache | ||
uses: useblacksmith/[email protected] | ||
with: | ||
shared-key: "cache-ampd-compilation" | ||
|
||
- name: Log crates.toml | ||
if: steps.cache.outputs.cache-hit == 'true' | ||
run: cat /home/runner/.cargo/.crates.toml | ||
|
||
- name: Build ampd | ||
working-directory: ./ampd | ||
run: cargo build --release --locked | ||
|
||
lints: | ||
name: Lints | ||
runs-on: blacksmith-16vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install stable toolchain | ||
- name: Install nightly toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.75.0 | ||
toolchain: nightly | ||
components: rustfmt | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Install protoc | ||
uses: arduino/setup-protoc@v2 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Cache build artifacts | ||
uses: useblacksmith/rust-cache@v3 | ||
uses: useblacksmith/[email protected] | ||
id: cache | ||
with: | ||
shared-key: "cache" | ||
shared-key: "cache-lints" | ||
|
||
- name: Log crates.toml | ||
if: steps.cache.outputs.cache-hit == 'true' | ||
run: cat /home/runner/.cargo/.crates.toml | ||
|
||
- name: Install cargo-sort | ||
uses: baptiste0928/cargo-install@v2 | ||
|
@@ -113,6 +180,14 @@ jobs: | |
command: fmt | ||
args: --all -- --check | ||
|
||
- name: Install stable toolchain | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: 1.78.0 | ||
components: clippy | ||
override: true | ||
|
||
- name: Run cargo sort | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Amplifier - Build main branch | ||
name: ampd (push to main) - Build and push image to ECR | ||
|
||
on: | ||
push: | ||
|
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.