Merge pull request #239 from kovzol/master #175
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: build | |
on: [push] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prerequisites | |
run: sudo apt update && sudo apt install build-essential qttools5-dev-tools qt6-base-dev libgl1-mesa-dev | |
- name: qmake | |
run: qmake6 | |
- name: make | |
run: make | |
mac: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install-qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: '6.2.4' | |
- name: qmake | |
run: qmake | |
- name: make | |
run: make |