Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Moved

Moved #68

Workflow file for this run

name: Compile
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: apt update
run: sudo apt-get update
- name: Install dependencies
run: sudo apt-get install -y debhelper-compat qt5-qmake qtbase5-dev qttools5-dev-tools qtdeclarative5-dev build-essential
- name: qmake
run: mkdir b; cd b; qmake ../src
- name: compile
run: cd b; make -j