Skip to content

Commit 4d34a4b

Browse files
authored
Add GitHub Actions workflow for Linux build
1 parent 62dde9b commit 4d34a4b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/build_linux.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Linux Build
2+
3+
on:
4+
push:
5+
branches: '*'
6+
pull_request:
7+
branches: '*'
8+
9+
jobs:
10+
build-windows:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repo
15+
uses: actions/checkout@v3
16+
17+
- name: Install CMake
18+
uses: jwlawson/actions-setup-cmake@v1
19+
with:
20+
cmake-version: "4.0.0"
21+
22+
- name: Configure CMake
23+
run: cmake -S . -B build
24+
25+
- name: Build
26+
run: cmake --build build --config Release

0 commit comments

Comments
 (0)