From c0685d00b5986fe6fa86cedf9405238691c74d63 Mon Sep 17 00:00:00 2001 From: hashlag Date: Sun, 25 Jan 2026 17:30:50 +0300 Subject: [PATCH] Add ChaosBenchmarkCI.yaml workflow --- .gitea/workflows/ChaosBenchmarkCI.yaml | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitea/workflows/ChaosBenchmarkCI.yaml diff --git a/.gitea/workflows/ChaosBenchmarkCI.yaml b/.gitea/workflows/ChaosBenchmarkCI.yaml new file mode 100644 index 0000000..791b0c3 --- /dev/null +++ b/.gitea/workflows/ChaosBenchmarkCI.yaml @@ -0,0 +1,30 @@ +name: ChaosBenchmark 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 benchmarks + run: | + cd build + ./ChaosBenches/ChaosBenches \ No newline at end of file