tg_cpphost: Improve delay cmd output #61
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: Build tg_cpphost (Linux) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3.5.3 | |
with: | |
fetch-depth: 0 | |
- name: Set up dependencies | |
run: | | |
./scripts/deps.sh | |
- name: Compile with Ubuntu Clang | |
env: | |
CC: clang | |
CXX: clang++ | |
run: | | |
mkdir build | |
cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Release . | |
cmake --build build |