Create qtwasm.yml #24
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: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
jobs: | |
build: | |
name: Ubuntu | |
runs-on: ubuntu-latest | |
container: ubuntu:focal | |
steps: | |
- uses: actions/checkout@v2 | |
- name: prepare instance | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
apt update | |
apt install -y build-essential qt5-qmake qtbase5-dev qtdeclarative5-dev | |
- name: qmake | |
run: qmake ./LogicCalc.pro | |
- name: Build | |
run: make -j$(nproc) |