Merge pull request #32 from g-maxime/hardened-runtime #12
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: Checks | |
on: [push, pull_request] | |
jobs: | |
Unix: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Dependencies | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get update -y | |
sudo apt-get install -y libxml2-utils libxml2-dev zlib1g-dev qtbase5-dev qt5-qmake qtchooser | |
fi | |
if [ "$RUNNER_OS" == "macOS" ]; then | |
brew install automake qt@5 | |
fi | |
- name: Configure | |
run: | | |
cd Project/GNU/CLI | |
autoreconf -if | |
./configure | |
- name: Build | |
run: | | |
cd Project/GNU/CLI | |
make | |
- name: Configure GUI | |
run: | | |
cd Project/QtCreator | |
export PATH=/usr/local/opt/qt@5/bin:$PATH | |
export QT_SELECT=qt5 | |
./prepare INCLUDEPATH+=/usr/local/include CONFIG+=c++11 -after QMAKE_MACOSX_DEPLOYMENT_TARGET=10.9 | |
- name: Build GUI | |
run: | | |
cd Project/QtCreator | |
export PATH=/usr/local/opt/qt/bin:$PATH | |
make |