From 959acc33a8ef4f33b1aeef52bd9474391400d9f9 Mon Sep 17 00:00:00 2001 From: Farid Siddiqi Date: Tue, 23 Dec 2025 18:55:02 -0800 Subject: [PATCH] remove test step --- .gitea/workflows/build-deploy.yml | 7 ++++--- deployment/ansible/site.yml | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build-deploy.yml b/.gitea/workflows/build-deploy.yml index 5ceb8a0..64a37fb 100644 --- a/.gitea/workflows/build-deploy.yml +++ b/.gitea/workflows/build-deploy.yml @@ -40,9 +40,10 @@ jobs: - name: Download dependencies run: go mod download - - - name: Run tests - run: go test -v ./... + + # takes too long, investigate why it takes so long + # - name: Run tests + # run: go test -v ./... - name: Build binary run: | diff --git a/deployment/ansible/site.yml b/deployment/ansible/site.yml index e9279af..500b042 100644 --- a/deployment/ansible/site.yml +++ b/deployment/ansible/site.yml @@ -372,6 +372,9 @@ listen 80; server_name {{ ansible_host }}; + # Allow large artifact uploads + client_max_body_size 500M; + location / { proxy_pass http://127.0.0.1:{{ gitea_http_port }}; proxy_set_header Host $host;