Files
chaos/.gitea/workflows/ChaosTestCI.yaml
hashlag 373b84f1ef
All checks were successful
ChaosTest CI / build-and-test (push) Successful in 27s
Update .gitea/workflows/ChaosTestCI.yaml
2025-09-21 17:05:07 +03:00

31 lines
553 B
YAML

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: Debug
run: |
cd build
ls -la
find . -name "*" -type f | grep -v CMakeFiles