i3lock-color/.github/workflows/Build Test.yml

28 lines
764 B
YAML
Raw Normal View History

name: Build Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-03-08 19:53:10 +00:00
- name: Install dependencies
2020-03-10 14:32:52 +00:00
run: sudo apt install pkg-config libpam0g-dev libcairo2-dev libfontconfig1-dev libxcb-composite0-dev libev-dev libx11-xcb-dev libxcb-xkb-dev libxcb-xinerama0-dev libxcb-randr0-dev libxcb-image0-dev libxcb-util-dev libxcb-xrm-dev libxkbcommon-dev libxkbcommon-x11-dev libjpeg-dev
- name: autoreconf
2020-03-08 21:56:45 +00:00
run: autoreconf -fiv
- name: configure
2020-03-08 21:56:45 +00:00
run: ./configure --prefix=/usr --sysconfdir=/etc
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck