Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit b1c8be2

Browse files
committed
Add github actions.
1 parent 7cd99f9 commit b1c8be2

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/ccpp.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: C/C++ CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: install dependencies
13+
run: sudo apt-get install libsystemd-dev libcurl4-openssl-dev libfuse-dev
14+
- name: autogen
15+
run: sh autogen.sh
16+
- name: make
17+
run: make
18+
- name: make distcheck
19+
run: make distcheck

0 commit comments

Comments
 (0)