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

cw-orch #876

Open
wants to merge 53 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
75d7492
First test modifications
Kayanski May 16, 2024
5fa3d44
Added tests with cw-orch
Kayanski May 16, 2024
364d12d
More tests
Kayanski May 17, 2024
d06b377
Finalize test changes
Kayanski May 17, 2024
7999ce8
Added Queryfns on voting
Kayanski May 17, 2024
302b1aa
Fix tests
Kayanski May 17, 2024
7bf054c
Added derive fns
Kayanski May 17, 2024
1cce2ea
Added other derives
Kayanski May 17, 2024
2c4db48
Fix lints
ismellike Jul 11, 2024
3ff1cc7
Add cache to basic.yml
ismellike Jul 11, 2024
5ccaa5e
Fix cargo stuff
ismellike Jul 11, 2024
449e481
Cargo schema + fix orch wasm build and tests
ismellike Jul 11, 2024
485b7f7
add cw-orch to external contract
Jul 13, 2024
a90d77c
Set integration_tests toolchain to latest stable
ismellike Jul 17, 2024
ae81938
Update basic.yml to cache only cargo deps
ismellike Jul 17, 2024
bcbaa7e
Revert integration_tests.yml
ismellike Jul 19, 2024
1d68601
Update to cw-orch .24.1
ismellike Jul 19, 2024
48c0067
Lint + not(target_arch = "wasm32") in lib.rs
ismellike Jul 19, 2024
c5995c0
Revert basic.yml
ismellike Jul 19, 2024
2478f28
bump /external
Jul 22, 2024
9cea2d1
add external contract cw-orch suites
Jul 23, 2024
713366d
Squashed commit of the following:
ismellike Jul 22, 2024
79f7052
Add orch payable flag to dao-voting-token-staked stake
ismellike Jul 22, 2024
e836dd1
Add more payable flags + distribution contracts to external
ismellike Jul 23, 2024
65091bd
add btsg-ft-factory to cw-orch setup
Jul 23, 2024
f2570de
correct import
Jul 23, 2024
bf0b668
bump correct init
Jul 23, 2024
3b14168
bump
Jul 23, 2024
776ebe3
good btsg cw-orch bump
Jul 23, 2024
0bb200e
cleanup script imports
Jul 23, 2024
9e36aed
Fix tokio dependency
ismellike Jul 23, 2024
dc43643
Update integration_tests.yml
ismellike Jul 23, 2024
73fe8c8
Clippy fixes
ismellike Jul 24, 2024
cad9837
remove tf issuer init for now
Jul 24, 2024
3bdf843
lint
Jul 24, 2024
ed3020d
bump ismellike cleanups
Jul 24, 2024
f5b9df5
cargo lock
Jul 24, 2024
0ae02a1
Remove dao-interface-master from scripts
ismellike Jul 24, 2024
06bca64
Update external.rs
ismellike Jul 24, 2024
c255d1e
Exclude scripts from workspace
ismellike Jul 24, 2024
0cc80ce
cw-orch test suite for contracts
Jul 25, 2024
3990e13
dao cw-orch interface
Jul 25, 2024
6660b23
Attempt to free up disk space
Aug 14, 2024
a9efb44
Attempt to free up more disk space
Aug 14, 2024
685211d
Fix removing uninstalled packages
Aug 14, 2024
bc42b27
fixed cw20 fund bug in reward distributor that requires open funding …
NoahSaso Sep 26, 2024
b0c7ef1
Free up more space for github actions (#885)
ismellike Oct 7, 2024
c05a6c8
organize tests (#890)
NoahSaso Oct 17, 2024
83e9a98
fix reward distributor interval delay bug (#891)
NoahSaso Oct 30, 2024
43a375a
Merge branch 'development' into feature/cw-orch-interface
NoahSaso Oct 31, 2024
1964fd3
cw-orch improvements (#880)
ismellike Oct 31, 2024
b76745e
Merge branch 'development' into feature/cw-orch-interface
NoahSaso Oct 31, 2024
6a6b9f2
Merge branch 'development' into feature/cw-orch-interface
NoahSaso Nov 13, 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
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-02-02
toolchain: nightly
target: wasm32-unknown-unknown
override: true

Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test_tube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

# https://github.com/orgs/community/discussions/25678
- name: Free up disk space on runner
run: |
df -h
rm -rf /usr/share/dotnet/
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y azure-cli firefox powershell mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
df -h
shell: bash

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
Expand Down
Loading
Loading