Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added cw-orch + Implemented Deploy trait #54

Merged
merged 26 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
37aa334
Added cw-orch + Deploy trait
Kayanski Oct 13, 2023
ee6ccd8
Reverted cw-multi-test
Kayanski Oct 13, 2023
d37e4b7
Revert format
Kayanski Oct 13, 2023
110052d
Removed unused deps
Kayanski Oct 13, 2023
d7fcfa3
Removed unused deps
Kayanski Oct 13, 2023
fce0d8f
Format
Kayanski Oct 13, 2023
61e81bf
Changed contract dependency to workspace
Kayanski Oct 19, 2023
b798a68
Added more state
Kayanski Oct 19, 2023
417e537
Add github action for wasm build
CyberHoward Oct 20, 2023
4b8ac11
test ci on push
CyberHoward Oct 20, 2023
46ddb17
use my credentials for pushing
CyberHoward Oct 20, 2023
e19c605
Update artifacts [skip ci]
CyberHoward Oct 20, 2023
0367bb5
only run on push to main
CyberHoward Oct 20, 2023
e9125b3
Corrected interface + state file
Kayanski Nov 3, 2023
2849001
Bump cw-orch
Kayanski Nov 10, 2023
ac014ab
Bumped versioning
Kayanski Nov 16, 2023
d85228c
Updated cosmwasm
Kayanski Nov 27, 2023
1c7f44c
Added deployments, + changed cw-rch-state file
Kayanski Dec 4, 2023
f88788c
Renames and gitignore
Kayanski Dec 4, 2023
82a10a9
Changed CI config
Kayanski Dec 4, 2023
ec8fb68
Merge remote-tracking branch 'upstream/main' into add-cw-orch
Kayanski Dec 7, 2023
245d1f1
Updated cw-orch
Kayanski Dec 13, 2023
cac1d6d
add `audit.toml` to ignore cw-orch sec warnings
CyberHoward Jan 2, 2024
a6ae466
Update cw-orch-state.json
Kayanski Jan 8, 2024
db93811
Removed artifacts
Kayanski Jan 8, 2024
1f33ca6
Merge branch 'add-cw-orch' of https://github.com/AbstractSDK/polytone…
Kayanski Jan 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cargo/audit.toml
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"]
29 changes: 29 additions & 0 deletions .github/workflows/artifacts.yml
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 'DA0-DA0@users.noreply.github.com'
git add artifacts --force
git commit -m "Update artifacts [skip ci]"
git push
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,6 @@ ci/configs/cosm-orc/local.yaml

contracts/**/Cargo.lock
packages/**/Cargo.lock

# Private env file
.env
Loading