-
Notifications
You must be signed in to change notification settings - Fork 8
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
Mauro Lacy
committed
Aug 6, 2024
1 parent
1c7d6e5
commit d426451
Showing
2 changed files
with
8 additions
and
10 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 |
---|---|---|
|
@@ -2,7 +2,6 @@ name: babylonchain/babylon-contract/deploy-WIP | |
on: | ||
push: | ||
branches: [ "disabled" ] | ||
tags: [ "^v[0-9]+\.[0-9]+\.[0-9]+.*" ] | ||
pull_request: | ||
branches: [ "disabled" ] | ||
env: | ||
|
@@ -16,15 +15,14 @@ jobs: | |
build_and_upload_contracts: | ||
defaults: | ||
run: | ||
working-directory: "/home/circleci/project" | ||
working-directory: "/__w" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.78.0 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
path: "/home/circleci/project" | ||
# # 'setup_remote_docker' was not transformed because there is no suitable equivalent in GitHub Actions | ||
path: "/__w" | ||
- name: Make temporary bin | ||
run: mkdir -p /tmp/bin | ||
- name: Install ghr | ||
|
@@ -34,9 +32,9 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
path: |- | ||
/home/circleci/project/artifacts/babylon_contract.wasm | ||
/home/circleci/project/artifacts/btc_staking.wasm | ||
/home/circleci/project/artifacts/checksums.txt | ||
/__w/artifacts/babylon_contract.wasm | ||
/__w/artifacts/btc_staking.wasm | ||
/__w/artifacts/checksums.txt | ||
- name: Show data | ||
run: |- | ||
ls -l artifacts | ||
|
@@ -55,14 +53,14 @@ jobs: | |
build_and_upload_schemas: | ||
defaults: | ||
run: | ||
working-directory: "/home/circleci/project" | ||
working-directory: "/__w" | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.78.0 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
path: "/home/circleci/project" | ||
path: "/__w" | ||
- name: Make temporary bin | ||
run: mkdir -p /tmp/bin | ||
- name: Install ghr | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
- name: Install cosmwasm-check | ||
run: cargo install --locked --debug --version ^2.0 cosmwasm-check | ||
- name: Check the Wasm binaries' validity | ||
run: cosmwasm-check /home/circleci/project/artifacts/*.wasm | ||
run: cosmwasm-check /__w/artifacts/*.wasm | ||
- name: Integration tests based on CosmWasm | ||
run: cargo test --test integration | ||
- uses: actions/[email protected] | ||
|