mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
21 lines
498 B
YAML
21 lines
498 B
YAML
|
name: Build on OSX
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: With USE_UPNP=${{ matrix.with_upnp }}
|
||
|
runs-on: macOS-latest
|
||
|
strategy:
|
||
|
fail-fast: true
|
||
|
matrix:
|
||
|
with_upnp: ['yes', 'no']
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: install packages
|
||
|
run: |
|
||
|
brew update
|
||
|
brew install boost miniupnpc openssl@1.1
|
||
|
- name: build application
|
||
|
run: make HOMEBREW=1 USE_UPNP=${{ matrix.with_upnp }} PREFIX=$GITHUB_WORKSPACE/output -j3
|