mirror of
https://github.com/tmate-io/tmate.git
synced 2025-05-18 06:11:07 +00:00
37 lines
697 B
YAML
37 lines
697 B
YAML
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
|
|
sudo make install
|
|
|
|
|
|
|
|
|