Skip to content

Commit 7424524

Browse files
committed
Add Github action for x86_64 Linux build
1 parent e2b32d1 commit 7424524

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Diff for: .github/workflows/ccpp.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: C/C++ CI
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: update
13+
run: sudo apt update && sudo apt-get install libasound2-dev
14+
- name: configure
15+
run: mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Werror" ..
16+
- name: build
17+
run: cmake --build build

0 commit comments

Comments
 (0)