From f2128a95122a709daeedf4dd688c0c6a1958001b Mon Sep 17 00:00:00 2001 From: adnanioricce Date: Sat, 23 Nov 2024 20:06:04 -0300 Subject: [PATCH] [CICD] - Adding gitea pipeline to build clox --- .gitea/workflows/build.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..d7a44dc --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,16 @@ +name: build +on: + push: +jobs: + test: + runs-on: nix-runner + steps: + # optional: Push the results to a cache + - uses: https://github.com/cachix/cachix-action@v12 + with: + name: local-cache + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + + - uses: actions/checkout@v3 + - run: nix shell --run "cd clox && make" +