From 229cc467d59aa527d6bd2a4c420ee748faa7e368 Mon Sep 17 00:00:00 2001 From: olebel Date: Tue, 14 Apr 2026 19:03:49 -0400 Subject: [PATCH 1/6] chore: test new runners --- .github/workflows/tests.yaml | 6 +++--- app/config.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e767a4be5..f42e22c34 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,7 +16,7 @@ on: jobs: build-bins: - runs-on: ubuntu-latest + runs-on: core-runner steps: - name: Checkout code uses: actions/checkout@v4 @@ -40,7 +40,7 @@ jobs: - run: make docker-image tests: - runs-on: ubuntu-latest + runs-on: core-runner steps: - name: Checkout code uses: actions/checkout@v4 @@ -97,7 +97,7 @@ jobs: run: make test-sim-fullapp release-dry-run: - runs-on: core-e2e + runs-on: core-runner steps: - name: Cleanup build folder run: | diff --git a/app/config.go b/app/config.go index 3784d9fc4..59b675574 100644 --- a/app/config.go +++ b/app/config.go @@ -29,7 +29,7 @@ import ( var mbasics = module.NewBasicManager( append([]module.AppModuleBasic{ - // accounts, fees. + // accounts, fees. auth.AppModuleBasic{}, // authorizations authzmodule.AppModuleBasic{}, From 05877b99acf98385f40e3239c2296ad5ad403760 Mon Sep 17 00:00:00 2001 From: olebel Date: Tue, 14 Apr 2026 19:58:44 -0400 Subject: [PATCH 2/6] ci: clean ws files owned by root --- .github/workflows/tests.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f42e22c34..78b922542 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -18,6 +18,10 @@ jobs: build-bins: runs-on: core-runner steps: + - name: Cleanup build folder + run: | + sudo rm -rf ./* || true + sudo rm -rf ./.??* || true - name: Checkout code uses: actions/checkout@v4 - name: Free Disk Space (Ubuntu) From bad4db9dd3be4046ebacee5324a13dfd5381d251 Mon Sep 17 00:00:00 2001 From: olebel Date: Tue, 14 Apr 2026 20:16:31 -0400 Subject: [PATCH 3/6] fix: Errorf -> Error in non-constant format string --- x/deployment/keeper/grpc_query.go | 2 +- x/market/keeper/grpc_query.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x/deployment/keeper/grpc_query.go b/x/deployment/keeper/grpc_query.go index 8a1b2d051..1217b0964 100644 --- a/x/deployment/keeper/grpc_query.go +++ b/x/deployment/keeper/grpc_query.go @@ -430,7 +430,7 @@ func (k Querier) Params(ctx context.Context, req *types.QueryParamsRequest) (*ty sdkCtx := sdk.UnwrapSDKContext(ctx) params, err := k.GetParams(sdkCtx) if err != nil { - return nil, status.Errorf(codes.NotFound, err.Error()) + return nil, status.Error(codes.NotFound, err.Error()) } return &types.QueryParamsResponse{Params: params}, nil diff --git a/x/market/keeper/grpc_query.go b/x/market/keeper/grpc_query.go index aafc3f0b7..0a595164f 100644 --- a/x/market/keeper/grpc_query.go +++ b/x/market/keeper/grpc_query.go @@ -1167,7 +1167,7 @@ func (k Querier) Params(ctx context.Context, req *types.QueryParamsRequest) (*ty sdkCtx := sdk.UnwrapSDKContext(ctx) params, err := k.GetParams(sdkCtx) if err != nil { - return nil, status.Errorf(codes.NotFound, err.Error()) + return nil, status.Error(codes.NotFound, err.Error()) } return &types.QueryParamsResponse{Params: params}, nil From 1bf731c2134a8b3d86ede5d5619c6c1748187fe5 Mon Sep 17 00:00:00 2001 From: olebel Date: Tue, 14 Apr 2026 20:50:17 -0400 Subject: [PATCH 4/6] ci: disable setup-go cache --- .github/actions/setup-ubuntu/action.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-ubuntu/action.yaml b/.github/actions/setup-ubuntu/action.yaml index e93cc77f7..8182298ca 100644 --- a/.github/actions/setup-ubuntu/action.yaml +++ b/.github/actions/setup-ubuntu/action.yaml @@ -1,5 +1,10 @@ --- name: setup-ubuntu +inputs: + go-cache: + description: 'Enable actions/setup-go module cache restore/save. Disable on self-hosted runners where the module cache persists on disk.' + required: false + default: 'false' runs: using: 'composite' steps: @@ -33,7 +38,7 @@ runs: - uses: actions/setup-go@v5 with: go-version: "${{ env.GOVERSION }}" - check-latest: true + cache: "${{ inputs.go-cache }}" - name: set environment uses: HatsuneMiku3939/direnv-action@v1 with: From e08eff8218d627624aae2f6fc6b0dd4252024b5c Mon Sep 17 00:00:00 2001 From: olebel Date: Tue, 14 Apr 2026 20:50:56 -0400 Subject: [PATCH 5/6] ci: cleanup build folder in tests job --- .github/workflows/tests.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 78b922542..1e396eee4 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -46,6 +46,10 @@ jobs: tests: runs-on: core-runner steps: + - name: Cleanup build folder + run: | + sudo rm -rf ./* || true + sudo rm -rf ./.??* || true - name: Checkout code uses: actions/checkout@v4 - name: Setup environment From 7c9d5ced76d636d330445e2c8e64cfdf56938ce3 Mon Sep 17 00:00:00 2001 From: olebel Date: Tue, 14 Apr 2026 22:25:51 -0400 Subject: [PATCH 6/6] ci: local cache for wasmvm libs --- .github/workflows/tests.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 1e396eee4..7e7fa9387 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -113,6 +113,11 @@ jobs: sudo rm -rf ./.??* || true - name: Checkout code uses: actions/checkout@v4 + - name: Cache wasmvm libs + uses: actions/cache@v4 + with: + path: .cache/lib + key: wasmvm-${{ hashFiles('go.sum') }} - name: Setup environment uses: ./.github/actions/setup-ubuntu - name: Set up QEMU