summaryrefslogtreecommitdiffstats
path: root/.github/workflows/Ubuntu.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/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
+
+
+
+