logs: flush stdout on log #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libssl-dev libconfig-dev cmake | |
- name: Create build directory | |
run: mkdir -p build && cd build | |
- name: Configure project with CMake | |
run: | | |
cd build | |
cmake .. | |
- name: Build project | |
run: | | |
cd build | |
make |