Skip to content

Commit 4d5799b

Browse files
authored
chore: fix the integration tests (#141)
* chore: use a larger runner for the integration tests They were running out of storage on the default runner. * chore: use the latest versions of the actions We were getting warnings about unsupported versions. * chore: upgrade builds/tests to use Go 1.23
1 parent ce64064 commit 4d5799b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/integration-linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ concurrency:
1616
jobs:
1717

1818
test:
19-
runs-on: ubuntu-latest
19+
runs-on: linux-x64-latest-more-storage
2020
steps:
21-
- uses: actions/setup-go@v2
21+
- uses: actions/setup-go@v5
2222
with:
23-
go-version: ^1.17
23+
go-version: ^1.23
2424

25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828

29-
- uses: actions/cache@v2
29+
- uses: actions/cache@v4
3030
with:
3131
path: ~/go/pkg/mod
3232
key: ${{ runner.os }}-gopkgmod-${{ hashFiles('**/go.sum') }}

nodejs/helper-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GOVERSION=1.17
1+
ARG GOVERSION=1.23
22
FROM --platform=$BUILDPLATFORM golang:${GOVERSION} as build
33
ARG BUILDPLATFORM
44
ARG TARGETOS

python/helper-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ COPY pydevd_2_9_5.patch ./pydevd.patch
8383
RUN patch --binary -p0 -d /dbgpy/pydevd/python3.11/lib/python3.11/site-packages < pydevd.patch
8484
RUN PYTHONUSERBASE=/dbgpy/pydevd-pycharm/python3.11 pip install --user pydevd-pycharm --no-warn-script-location
8585

86-
FROM --platform=$BUILDPLATFORM golang:1.17 as build
86+
FROM --platform=$BUILDPLATFORM golang:1.23 as build
8787
ARG BUILDPLATFORM
8888
ARG TARGETOS
8989
ARG TARGETARCH

python/test/pydevconnect/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# This Dockerfile creates a test image for verifying that pydevd is
1616
# running somewhere.
1717

18-
FROM golang:1.17 as build
18+
FROM golang:1.23 as build
1919
COPY . .
2020
RUN CGO_ENABLED=0 go build -o pydevconnect -ldflags '-s -w -extldflags "-static"' pydevconnect.go
2121

0 commit comments

Comments
 (0)