1
0
mirror of https://github.com/PurpleI2P/i2pd-qt.git synced 2025-02-03 10:14:55 +00:00

[actions] add builder on ubuntu (from main repo)

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2021-02-10 18:14:54 +03:00
parent 46b947e70b
commit 6bf67c8bc4
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2

19
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: Build on Ubuntu
on: [push, pull_request]
jobs:
build_qt:
name: With QT GUI
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
- name: install packages
run: |
sudo add-apt-repository ppa:mhier/libboost-latest
sudo apt-get update
sudo apt-get install build-essential qt5-default libqt5gui5 libboost1.74-dev libminiupnpc-dev libssl-dev zlib1g-dev
- name: build application
run: |
qmake
make -j3