Qt Quick Compiler #39
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: QMake | |
on: | |
push: | |
branches: [ "master", "citest" ] | |
pull_request: | |
branches: [ "master", "citest" ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install qt | |
run: sudo apt-get update && sudo apt-get -qy install qtdeclarative5-dev qtbase5-dev qt5-qmake qtquickcontrols2-5-dev software-properties-common qttools5-dev-tools qtbase5-dev libqt5svg5-dev qtdeclarative5-dev-tools qml-module-qtquick-controls | |
- name: Build folder | |
run: mkdir -p build | |
- name: Configure QMake | |
working-directory: ${{github.workspace}}/build | |
run: qmake ../CertInfo.pro CONFIG+=qtquickcompiler | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
run: make -j |