File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,9 @@ jobs:
150
150
echo "::set-output name=dockerEnvFile::$docker_env_file"
151
151
- name : ' Run acceptance tests'
152
152
run : |
153
+ echo ${{ steps.setup.outputs.dockerEnvFile }}
153
154
cat ${{ steps.setup.outputs.dockerEnvFile }}
155
+ echo "docker run..."
154
156
docker run --rm \
155
157
--network host \
156
158
-v /var/run/docker.sock:/var/run/docker.sock \
@@ -161,6 +163,7 @@ jobs:
161
163
-Dauto.outputDir=${{ steps.setup.outputs.outputDir }} \
162
164
-Dtags="${{ matrix.tag }}"
163
165
- name : ' Debug'
166
+ if : always()
164
167
run : |
165
168
docker images
166
169
docker ps -a
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ ARG VERSION=""
4
4
ARG BUILDNUM=""
5
5
6
6
# Build Geth in a stock Go builder container
7
- FROM golang:1.21 -alpine as builder
7
+ FROM golang:1.22 -alpine as builder
8
8
9
9
RUN apk add --no-cache gcc musl-dev linux-headers git
10
10
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const (
28
28
29
29
QuorumVersionMajor = 24
30
30
QuorumVersionMinor = 4
31
- QuorumVersionPatch = 0
31
+ QuorumVersionPatch = 1
32
32
)
33
33
34
34
// Version holds the textual version string.
You can’t perform that action at this time.
0 commit comments