Skip to content

Commit 1e03aae

Browse files
authored
ICA Genesis State x Docker builds x Wasmd 0.29-rc1 (CosmosContracts#297)
* hotfix: wasmvm 1.0.0 -> 1.1.0 * hotfix: update shasums * hotfix: enable cosmwasm_1_1 in app.go * Add genica command to instantiate default ICA params, and add that to docker build * wasmd 0.29.0-rc0 -> 0.29.0-rc1 * chore: tidy * tooling: Dockerfile libwasm 1.1.0 -> 1.1.1 * ci: update to new refs that account for changes in rc * chore: add ICA changes from v10 * chore: also update compose file * chore: update ICA allowed messages to match v10.0.2 * fix: multisend isn't actually in v10.0.2, msgvoteweighted is * feat: separate upgrade handlers out so they remain documented * chore: add instantiate2 msg to match wasmd 0.29 * chore: add placeholders for messages that will be added in v11 * chore: shut up the pendantic linter * ci: remove superlinter as it adds no value * deps: wasmd 0.29.0-rc1 -> rc2
1 parent 6378bf5 commit 1e03aae

20 files changed

+229
-48
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
version: 2
23
updates:
34
- package-ecosystem: github-actions

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
on: [push, pull_request]
23
name: every commit
34
jobs:
@@ -10,7 +11,7 @@ jobs:
1011
- name: Setup go
1112
uses: actions/setup-go@v3
1213
with:
13-
go-version: 1.19
14+
go-version: 1.18
1415
- run: go build ./...
1516

1617
test:
@@ -20,13 +21,13 @@ jobs:
2021
- name: Install Go
2122
uses: actions/setup-go@v3
2223
with:
23-
go-version: 1.19
24+
go-version: 1.18
2425
- name: Checkout code
2526
uses: actions/checkout@v3
2627
- name: Test
2728
run: go test ./...
2829

29-
# Use --check or --exit-code when available (Go 1.19?)
30+
# Use --check or --exit-code when available (Go 1.18?)
3031
# https://github.com/golang/go/issues/27005
3132
tidy:
3233
runs-on: ubuntu-latest
@@ -36,7 +37,7 @@ jobs:
3637
- name: Setup go
3738
uses: actions/setup-go@v3
3839
with:
39-
go-version: 1.19
40+
go-version: 1.18
4041
- run: |
4142
go mod tidy
4243
CHANGES_IN_REPO=$(git status --porcelain)

.github/workflows/build_docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Build Docker Image on PR
23

34
on:

.github/workflows/codeql.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
# THIS GITHUB ACTION LIFTED WITH LOVE FROM THE COSMOS-SDK
23
name: "CodeQL"
34

@@ -26,7 +27,7 @@ jobs:
2627
uses: actions/checkout@v3
2728
- uses: actions/setup-go@v3
2829
with:
29-
go-version: 1.19
30+
go-version: 1.18
3031
# Initializes the CodeQL tools for scanning.
3132
- name: Initialize CodeQL
3233
uses: github/codeql-action/init@v2

.github/workflows/docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: Build and Push Docker Image
23

34
on:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: golangci-lint
23
on:
34
push:

.github/workflows/gov_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v3
2020
with:
2121
repository: 'CosmosContracts/cw-unity-prop'
22-
ref: 'v0.3.3'
22+
ref: 'v0.3.4-alpha'
2323
- name: Test gov deploy
2424
run: |
2525
chmod a+x ./scripts/deploy_ci.sh

.github/workflows/gov_submit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v3
2020
with:
2121
repository: 'CosmosContracts/cw-unity-prop'
22-
ref: 'v0.3.3'
22+
ref: 'v0.3.4-alpha'
2323
- name: Test smart contract gov prop
2424
run: |
2525
chmod a+x ./scripts/submit_gov_ci.sh

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v3
2020
with:
2121
repository: 'envoylabs/whoami'
22-
ref: 'v0.7.0'
22+
ref: 'v0.7.1-alpha'
2323
- name: Run deploy script
2424
run: |
2525
chmod a+x ./scripts/deploy_ci.sh

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
name: release binary
23

34
on:

0 commit comments

Comments
 (0)