From 44cc5ce0e0eebdf9c58fa2749e19f036deece454 Mon Sep 17 00:00:00 2001 From: Cloud User Date: Wed, 25 Feb 2026 16:03:15 +0900 Subject: [PATCH] Add GIT_SSL_NO_VERIFY for self-signed cert on Gitea Runner CI jobs fail with gnutls_handshake() error because catthehacker/ubuntu container doesn't trust Gitea's private certificate. Co-Authored-By: Claude Opus 4.6 --- .gitea/workflows/ci.yaml | 3 +++ .gitea/workflows/dvc-data-update.yaml | 3 +++ .gitea/workflows/train.yaml | 3 +++ 3 files changed, 9 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 414d035..fd205ef 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -6,6 +6,9 @@ on: pull_request: branches: [main] +env: + GIT_SSL_NO_VERIFY: "true" + jobs: lint-and-test: runs-on: ubuntu-22.04 diff --git a/.gitea/workflows/dvc-data-update.yaml b/.gitea/workflows/dvc-data-update.yaml index e077472..6656546 100644 --- a/.gitea/workflows/dvc-data-update.yaml +++ b/.gitea/workflows/dvc-data-update.yaml @@ -7,6 +7,9 @@ on: - "dvc.yaml" - "dvc.lock" +env: + GIT_SSL_NO_VERIFY: "true" + jobs: validate-data: runs-on: ubuntu-latest diff --git a/.gitea/workflows/train.yaml b/.gitea/workflows/train.yaml index b4bd94c..8ab64d2 100644 --- a/.gitea/workflows/train.yaml +++ b/.gitea/workflows/train.yaml @@ -8,6 +8,9 @@ on: - "configs/**" - "dvc.yaml" +env: + GIT_SSL_NO_VERIFY: "true" + jobs: train: runs-on: ubuntu-latest