chore: fix integration tests

This commit is contained in:
Johan Siebens
2024-01-09 10:00:02 +00:00
parent 7e1d90590d
commit 3118d2e573
3 changed files with 12 additions and 12 deletions
+9 -9
View File
@@ -13,15 +13,15 @@ jobs:
fail-fast: false
matrix:
ts_version:
- "1.56.1"
- "1.54.1"
- "1.52.1"
- "1.50.1"
- "1.48.1"
- "1.46.1"
- "1.44.2"
- "1.42.0"
- "1.40.1"
- "v1.56"
- "v1.54"
- "v1.52"
- "v1.50"
- "v1.48"
- "v1.46"
- "v1.44"
- "v1.42"
- "v1.40"
env:
IONSCALE_TESTS_TS_TARGET_VERSION: ${{ matrix.ts_version }}
steps:
+2 -2
View File
@@ -1,7 +1,7 @@
ARG TAILSCALE_VERSION
FROM tailscale/tailscale:v${TAILSCALE_VERSION} as src
FROM alpine:3.14.0
FROM tailscale/tailscale:${TAILSCALE_VERSION} as src
FROM alpine:latest
RUN apk update && apk add ca-certificates openssh curl && rm -rf /var/cache/apk/*
+1 -1
View File
@@ -22,7 +22,7 @@ import (
"time"
)
const DefaultTargetVersion = "1.56.0"
const DefaultTargetVersion = "stable"
var (
setupOnce sync.Once