summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorneil <github@neilpang.com>2022-08-06 14:29:15 +0800
committerNicolas Viennot <nicolas@viennot.biz>2022-08-06 21:30:02 -0400
commit9a1aa9ae9d9c40b6d583355246089a9468dd03bc (patch)
tree633a76caeb11f6b7b5bbc88bbee23ea10c820d68
parent17fcc8b76d28ae5e59b59a08a642e462eea34221 (diff)
add Ubuntu.yml
-rw-r--r--.github/workflows/Ubuntu.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/Ubuntu.yml b/.github/workflows/Ubuntu.yml
new file mode 100644
index 00000000..581e616d
--- /dev/null
+++ b/.github/workflows/Ubuntu.yml
@@ -0,0 +1,37 @@
+name: Ubuntu
+on:
+ push:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/Ubuntu.yml'
+ pull_request:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/Ubuntu.yml'
+
+
+
+jobs:
+ Ubuntu:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - run: |
+ apt-get install -y build-essential automake libtool libevent-dev libncurses5-dev libmsgpack-dev libssh-dev pkg-config
+ autoupdate
+ ACLOCAL_PATH=/usr/share/aclocal ./autogen.sh
+ ./configure
+ make
+ make install
+
+
+
+