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