-
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.
Added cw-orch + Implemented Deploy trait (#54)
- Loading branch information
Showing
22 changed files
with
4,323 additions
and
433 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,5 @@ | ||
[advisories] | ||
# Ignoring two advisories that are introduced by cw-orchestrator. | ||
# They are safe to ignore as cw-orch is excluded from the binary as it's feature flagged. | ||
# Deps that triggered the audit: [tungstenite, webpki] | ||
ignore = ["RUSTSEC-2023-0065","RUSTSEC-2023-0052"] |
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,29 @@ | ||
# Builds and commits the artifacts whenever a change is pushed to main. | ||
name: artifact compiler | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release-artifacts: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install latest stable | ||
uses: ATiltedTree/setup-rust@v1 | ||
with: | ||
rust-version: stable | ||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Build Artifacts | ||
run: | | ||
./devtools/optimize.sh | ||
- name: Commit artifacts | ||
run: | | ||
git config --global user.name 'DA0-DA0' | ||
git config --global user.email '[email protected]' | ||
git add artifacts --force | ||
git commit -m "Update artifacts [skip ci]" | ||
git 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,3 +31,6 @@ ci/configs/cosm-orc/local.yaml | |
|
||
contracts/**/Cargo.lock | ||
packages/**/Cargo.lock | ||
|
||
# Private env file | ||
.env |
Oops, something went wrong.