Skip to content

Commit 36ae92f

Browse files
authored
Create cmake-single-platform.yml
1 parent ae2ea45 commit 36ae92f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Simple CMake Build
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install dependencies
17+
run: sudo apt-get update && sudo apt-get install -y libzmq3-dev
18+
19+
- name: Configure
20+
run: cmake -B build
21+
22+
- name: Build
23+
run: cmake --build build
24+

0 commit comments

Comments
 (0)