Add ChaosTestCI workflow
All checks were successful
ChaosTest CI / build-and-test (push) Successful in 29s
All checks were successful
ChaosTest CI / build-and-test (push) Successful in 29s
This commit is contained in:
30
.gitea/workflows/ChaosTestCI.yaml
Normal file
30
.gitea/workflows/ChaosTestCI.yaml
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user