From b9736f2c9a490a2b804ab05aeee52d9ed081f07a Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 23 Jan 2026 15:48:10 -0700 Subject: [PATCH] add CI --- .gitea/workflows/build-stable.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitea/workflows/build-stable.yml diff --git a/.gitea/workflows/build-stable.yml b/.gitea/workflows/build-stable.yml new file mode 100644 index 0000000..f35c02c --- /dev/null +++ b/.gitea/workflows/build-stable.yml @@ -0,0 +1,30 @@ +name: nix docker build stable + +on: + push: + branches: [main] + pull_request: + types: [opened, reopened, synchronize] + +jobs: + amd64: + runs-on: [ nix-flakes, amd64-builder ] + steps: + - name: System Info + run: uname -m + + - name: Setup + run: | + apt update -y + apt install -y curl gnupg + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt install -y nodejs + + - name: Checkout + uses: actions/checkout@v5 + + - name: Build + run: | + cd stable-with-flakes + nix build .#nixos-stable +