name: Build on Ubuntu on: [push, pull_request] jobs: build-make: name: Make with USE_UPNP=${{ matrix.with_upnp }} runs-on: ubuntu-20.04 strategy: fail-fast: true matrix: with_upnp: ['yes', 'no'] steps: - uses: actions/checkout@v2 - name: install packages run: | sudo apt-get update sudo apt-get install build-essential libboost-all-dev libminiupnpc-dev libssl-dev zlib1g-dev - name: build application run: make USE_UPNP=${{ matrix.with_upnp }} -j3 build-cmake: name: CMake with -DWITH_UPNP=${{ matrix.with_upnp }} runs-on: ubuntu-20.04 strategy: fail-fast: true matrix: with_upnp: ['ON', 'OFF'] steps: - uses: actions/checkout@v2 - name: install packages run: | sudo apt-get update sudo apt-get install build-essential cmake libboost-all-dev libminiupnpc-dev libssl-dev zlib1g-dev - name: build application run: | cd build cmake -DWITH_UPNP=${{ matrix.with_upnp }} . make -j3 build-static: name: Static build with UPnP runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: install packages run: | sudo apt-get update sudo apt-get install build-essential libboost-all-dev libminiupnpc-dev libssl-dev zlib1g-dev - name: build application run: make DEBUG=no USE_STATIC=yes USE_UPNP=yes -j`nproc` - name: Upload artifacts uses: actions/upload-artifact@v2 with: name: i2pd-amd64-static path: i2pd