-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(ibc-clients): upload Tendermint CosmWasm client as workflow artifa…
…ct (#1173) * tendermint wasm08 client as workflow artifact * rm retention days * lints on comments * conditional retention days * use actions-rust-lang over dtolnay * imp docker run * use cosmwasm/optimizer 0.15.1 * correct mount paths * validate checksum * s/wasm08/cosmwasm * .yaml over .yml * install cargo binary before wasm compile to avoid docker mount permission * fix permissions manually * use id * tendermint over tm * document tendermint cw artifact * grammar
- Loading branch information
Showing
2 changed files
with
104 additions
and
0 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,96 @@ | ||
name: Upload CosmWasm clients as Github workflow artifact | ||
on: | ||
pull_request: | ||
paths: | ||
- .github/workflows/upload-cw-clients.yaml | ||
- Cargo.toml | ||
- ci/** | ||
- ibc/** | ||
- ibc-core/** | ||
- ibc-apps/** | ||
- ibc-data-types/** | ||
- ibc-clients/** | ||
- ibc-primitives/** | ||
- ibc-query/** | ||
- ibc-testkit/** | ||
- ibc-derive/** | ||
push: | ||
branches: main | ||
paths: | ||
- .github/workflows/upload-cw-clients.yaml | ||
- Cargo.toml | ||
- ci/** | ||
- ibc/** | ||
- ibc-core/** | ||
- ibc-apps/** | ||
- ibc-data-types/** | ||
- ibc-clients/** | ||
- ibc-primitives/** | ||
- ibc-query/** | ||
- ibc-testkit/** | ||
- ibc-derive/** | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
upload-tendermint-cw-client: | ||
name: Compile and upload Tendermint CosmWasm client | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
|
||
# `cosmwasm/optimizer` requires `Cargo.lock`. but currently, | ||
# `Cargo.lock` is not committed, because `ibc-rs` is treated as library. | ||
- name: Produce `Cargo.lock` file | ||
run: cargo update -p ibc-client-tendermint-cw | ||
|
||
- name: Create mount directories | ||
run: mkdir -p "${HOME}/.cargo/registry" "$(pwd)"/target | ||
|
||
- name: Compile cosmwasm blob for tendermint light client | ||
run: | | ||
docker run \ | ||
-v "$(pwd)":/code \ | ||
-v "$(pwd)"/target:/target \ | ||
-v "${HOME}/.cargo/registry":/usr/local/cargo/registry \ | ||
cosmwasm/optimizer:0.15.1 ./ibc-clients/ics07-tendermint/cw-contract | ||
- name: Fix permissions | ||
run: | | ||
sudo chown -R $(id -u):$(id -g) "$(pwd)"/target | ||
sudo chown -R $(id -u):$(id -g) "${HOME}/.cargo/registry" | ||
- name: Install `cosmwasm-check` from crates.io | ||
uses: baptiste0928/cargo-install@v3 | ||
with: | ||
crate: cosmwasm-check | ||
|
||
- name: Check compiled CosmWasm contract | ||
working-directory: artifacts | ||
run: | | ||
sha256sum -c checksums.txt | ||
cosmwasm-check ibc_client_tendermint_cw.wasm | ||
- name: Upload compiled CosmWasm contract | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: tendermint-cw-${{ github.sha }} | ||
path: artifacts/ibc_client_tendermint_cw.wasm | ||
# Retain the artifact for 1 week for PRs and 3 months for `main` branch | ||
retention-days: ${{ github.event_name == 'pull_request' && 7 || 90 }} | ||
overwrite: true | ||
|
||
# # An example workflow to download the artifact: | ||
# download-tendermint-cw-client: | ||
# name: Download pre-compiled Tendermint CosmWasm client | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/download-artifact@v4 | ||
# with: | ||
# name: tendermint-cw-${{ env.IBC_RS_COMMIT_HASH }} | ||
# repository: cosmos/ibc-rs | ||
# - run: ls -l ibc_client_tendermint_cw.wasm |
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