Skip to content

Commit f12e518

Browse files
authored
Create build-linux
1 parent 10fb88b commit f12e518

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/build-linux

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: build-linux
2+
3+
on: [push]
4+
5+
jobs:
6+
build-ubuntu:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: configure
13+
run: mkdir build-release && cd build-release && cmake -DCMAKE_BUILD_TYPE=Release ..
14+
- name: build
15+
run: cmake --build build-release

0 commit comments

Comments
 (0)