From 3f1efc5eebe8152e2009c2213bbc9c4f98efd5e2 Mon Sep 17 00:00:00 2001 From: hashlag <90853356+hashlag@users.noreply.github.com> Date: Sun, 21 Sep 2025 16:58:00 +0300 Subject: [PATCH] Add ChaosTestCI workflow --- .gitea/workflows/ChaosTestCI.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitea/workflows/ChaosTestCI.yaml diff --git a/.gitea/workflows/ChaosTestCI.yaml b/.gitea/workflows/ChaosTestCI.yaml new file mode 100644 index 0000000..4fbaef4 --- /dev/null +++ b/.gitea/workflows/ChaosTestCI.yaml @@ -0,0 +1,30 @@ +name: ChaosTest CI + +on: [push, pull_request] + +jobs: + build-and-test: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: true + + - name: Install + run: | + sudo apt-get update + sudo apt-get install -y build-essential cmake + + - name: Configure, build + run: | + mkdir build + cd build + cmake .. + cmake --build . + + - name: Run tests + run: | + cd build + ./ChaosTests \ No newline at end of file