Rename pkgconfig to pkg-config (#161) #92
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: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: make | |
run: make | |
- name: make install | |
run: sudo env PREFIX=/usr/ make install | |
- name: test deps | |
run: sudo apt-get install -y xvfb | |
- name: smoke test build | |
run: xvfb-run ./xst bash -c exit | |
- name: smoke test install | |
run: xvfb-run xst bash -c exit |