diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8643a97..5d159ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ include: inputs: runway_service_id: sparkle image: "$CONTAINER_IMAGE_COMMIT" - runway_version: v3.66.2 + runway_version: v3.83.0 build image: image: docker:28 interruptible: true @@ -45,9 +45,9 @@ schema: stage: test needs: [] script: - - go get -u ./... - - go tool zed version - - go tool zed validate etc/authzd/*.yaml + - go install github.com/authzed/zed/cmd/zed@latest + - ./bin/tool zed version + - ./bin/tool zed validate etc/authzd/*.yaml race: image: golang:latest stage: test @@ -57,8 +57,9 @@ race: variables: CGO_ENABLED: 1 integration: - image: golang:1.24.3 + image: golang:1.24.5 stage: test + allow_failure: true needs: - build image services: @@ -77,4 +78,5 @@ integration: DOCKER_HOST: "tcp://docker:2375" DOCKER_TLS_CERTDIR: "" IMAGE_TAG: $CONTAINER_IMAGE_COMMIT - # TESTCONTAINERS_HOST_OVERRIDE: "host.docker.internal" + # TESTCONTAINERS_HOST_OVERRIDE: "localhost" + # TESTCONTAINERS_RYUK_DISABLED: "true" |
