File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed
actions/setup-environment-action
playground/backend/containers/go Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 8181 cache-disabled : ${{ inputs.disable-cache }}
8282 - name : Install Go
8383 if : ${{ inputs.go-version != '' }}
84- uses : actions/setup-go@v5
84+ uses : actions/setup-go@v6
8585 with :
8686 go-version : ${{ inputs.go-version == 'default' && '1.25' || inputs.go-version }} # never set patch, to get latest patch releases.
8787 cache-dependency-path : $${{ inputs.disable-cache && '' || 'sdks/go.sum' }}
Original file line number Diff line number Diff line change 5757 runs-on : [self-hosted, ubuntu-20.04, highmem]
5858 name : " beam_Playground_CI_Nightly"
5959 strategy :
60- matrix :
60+ matrix :
6161 sdk : ["python", "java", "go"]
6262 fail-fast : false
6363 steps :
6666 uses : ./.github/actions/setup-environment-action
6767 with :
6868 python-version : default
69+ go-version : ' 1.25'
6970 - name : Install requirements
7071 run : |
7172 cd $BEAM_ROOT_DIR/playground/infrastructure
@@ -88,11 +89,11 @@ jobs:
8889 CONTAINER_ID=$(docker run -d -e PROTOCOL_TYPE=TCP apache/beam_playground-backend-${{ matrix.sdk }}:nightly)
8990 echo "container_id=$CONTAINER_ID" >> $GITHUB_ENV
9091 - name : Get Container IP
91- run : |
92+ run : |
9293 CONTAINER_IP=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ${{ env.container_id }})
9394 echo "container_ip=$CONTAINER_IP" >> $GITHUB_ENV
9495 - name : Run CI
95- env :
96+ env :
9697 SERVER_ADDRESS : ${{ env.container_ip }}:8080
9798 BEAM_EXAMPLE_CATEGORIES : ${{ env.BEAM_ROOT_DIR }}/playground/categories.yaml
9899 SDK : ${{ matrix.sdk }}
Original file line number Diff line number Diff line change 2020// directory.
2121module github.com/apache/beam/test-infra/mock-apis
2222
23- go 1.23 .0
23+ go 1.25 .0
2424
25- toolchain go1.24.4
25+ toolchain go1.25.2
2626
2727require (
2828 cloud.google.com/go/logging v1.8.1
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ COPY kafka-emulator/kafka-emulator.tar /opt/playground/backend/kafka-emulator/
6969RUN cd /opt/playground/backend/kafka-emulator/ && tar -xvf kafka-emulator.tar && rm kafka-emulator.tar &&\
7070 mv kafka-emulator/*.jar . && rmdir kafka-emulator/ &&\
7171 mv beam-playground-kafka-emulator-*.jar beam-playground-kafka-emulator.jar
72- RUN apt-get update && apt-get install -y openjdk-11 -jre-headless
72+ RUN apt-get update && apt-get install -y openjdk-21 -jre-headless
7373
7474# Create a user group `appgroup` and a user `appuser`
7575RUN groupadd --gid 20000 appgroup \
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ docker {
8888 buildArgs(
8989 [' BASE_IMAGE' : project. rootProject. hasProperty([" base-image" ]) ?
9090 project. rootProject[" base-image" ] :
91- " golang:1-bullseye " ,
91+ " golang:1.25 " ,
9292 ' SDK_TAG' : project. rootProject. hasProperty([" sdk-tag" ]) ?
9393 project. rootProject[" sdk-tag" ] : project. rootProject. sdk_version,
9494 ' SDK_TAG_LOCAL' : project. rootProject. sdk_version,
You can’t perform that action at this time.
0 commit comments