Skip to content

Commit bbfaa86

Browse files
authored
workflow: add build job
1 parent a99e0f7 commit bbfaa86

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: '20 16 * * *'
8+
9+
jobs:
10+
tutorial:
11+
name: Build tutorial
12+
runs-on: ubuntu-24.04
13+
container: ghcr.io/iarsystems/arm
14+
steps:
15+
- name: Checkout project
16+
uses: actions/checkout@v4
17+
- name: CMake - Configure
18+
run: cmake -GNinja -Bbuild
19+
- name: CMake - Build
20+
run: cmake --build build --verbose
21+
22+
23+

0 commit comments

Comments
 (0)