From 8a065f5ad66846e89ac0f301d2329c33b54d2632 Mon Sep 17 00:00:00 2001 From: hashlag <90853356+hashlag@users.noreply.github.com> Date: Sun, 21 Sep 2025 17:09:14 +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..443d0ab --- /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/ChaosTests \ No newline at end of file