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

v2.7.0 - Vote Delegation, Initial Actions, Deep Instantiate2 Support #888

Open
wants to merge 5 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
16 changes: 8 additions & 8 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
docker-images: true
swap-storage: true

- name: Install latest stable toolchain
- name: Install nightly-2024-01-08 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: nightly-2024-01-08
target: wasm32-unknown-unknown
override: true

- name: Run tests
uses: actions-rs/cargo@v1
with:
toolchain: stable
toolchain: nightly-2024-01-08
command: all-test
args: --locked
env:
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Compile WASM contract
uses: actions-rs/cargo@v1
with:
toolchain: stable
toolchain: nightly-2024-01-08
command: wasm
args: --locked
env:
Expand All @@ -56,25 +56,25 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Install stable toolchain
- name: Install nightly-2024-01-08 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
toolchain: nightly-2024-01-08
override: true
components: rustfmt, clippy

- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
toolchain: stable
toolchain: nightly-2024-01-08
command: fmt
args: --all -- --check

- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
toolchain: stable
toolchain: nightly-2024-01-08
command: clippy
args: --all-targets -- -D warnings

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
docker-images: true
swap-storage: true

- name: Install latest nightly toolchain
- name: Install nightly-2024-01-08 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-02-02
toolchain: nightly-2024-01-08
target: wasm32-unknown-unknown
override: true

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Upload Gas Report
if: ${{ github.ref == 'refs/heads/main' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dao-dao-gas-report-${{ env.GIT_BRANCH }}
path: ci/integration-tests/gas_report.json
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/release-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

# tar is required for cargo cache
- run: apk add --no-cache tar

Expand All @@ -37,7 +48,7 @@ jobs:
run: optimize.sh .

- name: Upload contracts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: contracts
path: artifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_tube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
docker-images: true
swap-storage: true

- name: Install latest nightly toolchain
- name: Install nightly-2024-01-08 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ ci/configs/cosm-orc/local.yaml
contracts/**/Cargo.lock
packages/**/Cargo.lock
debug/**/Cargo.lock
ci/**/Cargo.lock
ci/**/Cargo.lock
.aider*
Loading
Loading