From 83640b722b9e2eccf06042dafd578a71ad9d1820 Mon Sep 17 00:00:00 2001 From: 6arelyFuture Date: Sat, 6 Jul 2024 21:26:26 +0000 Subject: [PATCH 1/2] maint: remove usage of Docker I don't think this was a good idea --- .gitea/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bebbffe..be2ee46 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,14 +13,8 @@ jobs: lfs: false - name: Create release - uses: addnab/docker-run-action@v3 - with: - image: ubuntu:noble - options: --volumes-from=${{ env.JOB_CONTAINER_NAME }} - run: | - cd ${{ github.workspace }} - export TZ=America/Los_Angeles - ./.gitea/scripts/ci.sh + run: | + ./.gitea/scripts/ci.sh - name: Upload release uses: actions/upload-artifact@v3 -- 2.34.1 From 3a9f6a354d04430bbe42cb7eaa46ff0a5bb3012c Mon Sep 17 00:00:00 2001 From: 6arelyFuture Date: Sat, 6 Jul 2024 21:27:53 +0000 Subject: [PATCH 2/2] maint: fix this step --- .gitea/scripts/ci.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/scripts/ci.sh b/.gitea/scripts/ci.sh index 4481c43..da8f558 100755 --- a/.gitea/scripts/ci.sh +++ b/.gitea/scripts/ci.sh @@ -2,9 +2,10 @@ set -e -echo "Downloading dependencies" -apt-get update > /dev/null 2>&1 -apt-get install -y build-essential software-properties-common > /dev/null 2>&1 +# 22-bookworm should have everything +# echo "Downloading dependencies" +# apt-get update > /dev/null 2>&1 +# apt-get install -y build-essential software-properties-common > /dev/null 2>&1 # setup mkdir build -- 2.34.1