2020-10-14 04:20:26 +00:00
|
|
|
name: Build on Ubuntu with make
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-16.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
|
|
|
with_upnp: ['yes', 'no']
|
|
|
|
steps:
|
|
|
|
- name: Building with USE_UPNP=${{ matrix.with_upnp }} flag
|
2020-10-14 04:22:00 +00:00
|
|
|
uses: actions/checkout@v2
|
2020-10-14 04:20:26 +00:00
|
|
|
- name: install packages
|
2020-10-14 04:24:02 +00:00
|
|
|
run: sudo apt-get install build-essential libboost-date-time-dev libboost-filesystem-dev libboost-program-options-dev libboost-system-dev libminiupnpc-dev libssl-dev zlib1g-dev
|
2020-10-14 04:20:26 +00:00
|
|
|
- name: build application
|
2020-10-14 04:24:02 +00:00
|
|
|
run: make USE_AVX=no USE_AESNI=no USE_UPNP=${{ matrix.with_upnp }} -j3
|