From c4028399e12cae1df8f7d72a461d60ca498f1270 Mon Sep 17 00:00:00 2001 From: ahoneybun Date: Thu, 11 Dec 2025 08:59:47 -0700 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c12ee32..dee4408 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,18 +1,22 @@ -name: Test runner +name: use DeterminateSystems Nix on: push: branches: [ main ] jobs: - test-amd64: + build-amd64: runs-on: [ubuntu-24.04, amd64-builder] steps: - - name: Print host info - run: uname -a + - name: System Info + run: uname -m - test-arm64: - runs-on: [ubuntu-24.04, arm64-builder] - steps: - - name: Print host info - run: uname -a \ No newline at end of file + - 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: Install Determitate Nix + uses: https://github.com/DeterminateSystems/nix-installer-action@main \ No newline at end of file