From 5df49dcfab960782aa4eb21d5abd7825f5b3a8c9 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 1 Oct 2025 13:12:00 +0200 Subject: [PATCH] Add gitea CI configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Builds the .#bsc-ci.all target on each PR. Causes all packages to be built in hut, populating the nix cache. Reviewed-by: Aleix Boné Tested-by: Rodrigo Arias Mallo --- .gitea/workflows/ci.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..7393352 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,15 @@ +name: CI +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build:all: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link --print-out-paths .#bsc-ci.all