summaryrefslogtreecommitdiffstats
path: root/.github/workflows/Ubuntu.yml
blob: 7c8dea57a6af592cb7440d281dfa98a02c2b3633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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: |
        sudo 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