Skip to content

Commit a0aa9b0

Browse files
committed
bump to 1.11.13-rc0, add staker keys
1 parent 218a0e9 commit a0aa9b0

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
strategy:
6868
fail-fast: false
6969
matrix:
70-
index: [1, 2, 3, 4, 5]
7170
START_ROSETTA_SERVER_AFTER_BOOTSTRAP: [true, false]
7271
services:
7372
flare_node:
@@ -81,7 +80,7 @@ jobs:
8180
NETWORK_ID: localflare
8281
FLARE_LOCAL_TXS_ENABLED: true
8382
START_ROSETTA_SERVER_AFTER_BOOTSTRAP: ${{ matrix.START_ROSETTA_SERVER_AFTER_BOOTSTRAP }}
84-
EXTRA_ARGUMENTS: --staking-tls-cert-file=/app/flare/staking/local/staker1.crt --staking-tls-key-file=/app/flare/staking/local/staker1.key
83+
EXTRA_ARGUMENTS: --staking-tls-cert-file=/app/flare/staking/local/staker1.crt --staking-tls-key-file=/app/flare/staking/local/staker1.key --staking-signer-key-file=/app/flare/staking/local/signer1.key
8584
options: >-
8685
--health-interval 15s
8786
--health-timeout 15s
@@ -146,7 +145,6 @@ jobs:
146145
strategy:
147146
fail-fast: false
148147
matrix:
149-
index: [1, 2, 3, 4, 5]
150148
services:
151149
flare_node:
152150
image: ${{ needs.define-env.outputs.IMAGE_PATH_0 }}@${{ needs.build-container.outputs.IMAGE_SHA256_0 }}
@@ -184,10 +182,6 @@ jobs:
184182
--data-raw '{ "metadata" : {} }' \
185183
--fail || exit 1
186184
187-
188-
189-
190-
191185
test-make_build:
192186
runs-on: ubuntu-latest
193187
steps:

server/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM golang:1.22 AS flare
55

66
WORKDIR /app
77

8-
ARG GO_FLARE_VERSION=v1.11.0
8+
ARG GO_FLARE_VERSION=v1.11.13-rc0
99
ARG GO_FLARE_REPO=https://github.com/flare-foundation/go-flare
1010

1111
RUN git clone --branch "$GO_FLARE_VERSION" "${GO_FLARE_REPO}" .
@@ -44,6 +44,7 @@ RUN \
4444
GO_VERSION=$(go version | awk {'print $3'}) \
4545
GIT_COMMIT=main \
4646
go mod download && \
47+
go mod vendor && \
4748
make setup && \
4849
make build
4950

0 commit comments

Comments
 (0)