mirror of
https://github.com/tmate-io/tmate.git
synced 2025-01-10 07:58:35 +01:00
add Ubuntu.yml
This commit is contained in:
parent
17fcc8b76d
commit
9a1aa9ae9d
37
.github/workflows/Ubuntu.yml
vendored
Normal file
37
.github/workflows/Ubuntu.yml
vendored
Normal file
@ -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
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user