From 8dc9e01dd6092afc3d765e9846c9c262e8270e47 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Mon, 29 Apr 2024 13:50:45 +0200 Subject: [PATCH] Add Gitea CI workflow --- .gitea/workflows/ci.yaml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 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..f7c022f --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,39 @@ +name: CI +on: [push,pull_request] + +jobs: + build:local: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link .#ovniPackages.local + + build:rt: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link .#ovniPackages.rt + + build:debug: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link .#ovniPackages.debug + + build:asan: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link .#ovniPackages.asan + + build:nompi: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link .#ovniPackages.nompi + + build:compilers: + runs-on: native + steps: + - uses: https://gitea.com/ScMi1/checkout@v1.4 + - run: nix build -L --no-link .#ovniPackages.compilers