mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
62cd9fffa3
Rework CPU extensions detection code and build with AES-NI and AVX support by default
37 lines
1.0 KiB
YAML
37 lines
1.0 KiB
YAML
name: Build on Ubuntu
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: With USE_UPNP=${{ matrix.with_upnp }}
|
|
runs-on: ubuntu-16.04
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
with_upnp: ['yes', 'no']
|
|
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 libboost1.74-dev libminiupnpc-dev libssl-dev zlib1g-dev
|
|
- name: build application
|
|
run: make USE_UPNP=${{ matrix.with_upnp }} -j3
|
|
|
|
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: |
|
|
cd qt/i2pd_qt
|
|
qmake
|
|
make -j3 |