Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lockwarr committed Oct 15, 2024
1 parent e0882d0 commit b356480
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/images/builder.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# TODO: once we migrate to wasmvm 2.1.0, we can go back to using base golang image
FROM alpine:3.18

ENV PATH /usr/local/go/bin:$PATH
ENV PATH=/usr/local/go/bin:$PATH
COPY --from=golang:1.22 /usr/local/go /usr/local/go

ARG LEDGER_ENABLED
Expand All @@ -19,7 +19,7 @@ RUN set -eux; apk add --no-cache ca-certificates build-base;

RUN apk add git

ARG WASMVM_VERSION="v2.0.0"
ARG WASMVM_VERSION="v2.1.2"
ARG WASMVM_LIB="libwasmvm_muslc.x86_64.a"
ARG WASMVM_BASE_URL="https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_VERSION"
ARG WASMVM_URL="$WASMVM_BASE_URL/$WASMVM_LIB"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nolus-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

# docker images
CONTAINER_REGISTRY: ghcr.io
BUILDER_IMAGE_TAG: "1.22.3"
BUILDER_IMAGE_TAG: "1.22.4"
BUILDER_IMAGE_NAME: "builder"
BUILDER_DOCKERFILE: ".github/images/builder.Dockerfile"
PROTOGEN_IMAGE_TAG: "0.2.0"
Expand Down Expand Up @@ -172,8 +172,8 @@ jobs:
needs: [test-unit-coverage, builder-image]
container:
# image name needs to be hardcoded: https://github.com/orgs/community/discussions/26324
image: "ghcr.io/nolus-protocol/nolus-core/builder:1.22.3"

image: "public.ecr.aws/nolus/builder:1.22.4"
steps:
- uses: actions/checkout@v4

Expand Down
7 changes: 0 additions & 7 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ output:
sort-results: true

issues:
exclude-rules:
- text: 'has no field or method'
linters:
- typecheck

# Maximum issues count per one linter.
# Set to 0 to disable.
# Default: 50
Expand All @@ -48,5 +43,3 @@ issues:
# Set to 0 to disable.
# Default: 3
max-same-issues: 0


0 comments on commit b356480

Please sign in to comment.