24 lines
531 B
YAML
Raw Normal View History

2020-12-24 23:54:11 -06:00
name: Serial-Studio
2020-12-24 23:29:05 -06:00
on: [push]
jobs:
2020-12-24 23:34:12 -06:00
build-linux:
2020-12-24 23:29:05 -06:00
runs-on: ubuntu-latest
steps:
2020-12-24 23:54:11 -06:00
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ../Qt
key: ${{ runner.os }}-QtCache
- name: Install Qt
uses: jurplel/install-qt-action@v2
with:
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- name: Compile
run: mkdir build-linux
cd build-linux
qmake ../Serial-Studio.pro
make