Upwards list support(Addresses #328, X11/Wayland/Cairo) #279
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install build deps | |
run: sudo apt-get install scdoc libcairo2-dev libpango1.0-dev libxinerama-dev libwayland-dev wayland-protocols libxkbcommon-dev | |
- name: make | |
run: make PREFIX=install EXTRA_WARNINGS=-Werror | |
- name: make install | |
run: make install PREFIX=install | |
- name: print install tree | |
run: find install | sort | |
- name: check symbols | |
run: make check-symbols | |
osx: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install build deps | |
run: brew update; brew install make pkg-config scdoc | |
- name: make | |
run: sh build-osx.sh EXTRA_WARNINGS=-Werror PREFIX=install clients curses | |
- name: make install | |
run: sh build-osx.sh PREFIX=install install | |
- name: print install tree | |
run: find install | sort | |
- name: check symbols | |
run: sh build-osx.sh check-symbols | |
doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install doxygen | |
run: sudo apt-get install doxygen | |
- name: make doxygen | |
run: make doxygen | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: docs | |
path: html |