add_iface: check interface name is set #88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macosx | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
workflow_dispatch: | |
branches: [ master ] | |
push: | |
branches: [ master ] | |
jobs: | |
macosx_build: | |
runs-on: macos-12 | |
steps: | |
- name: Get nEMU sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Install dependencies | |
run: brew install cmake json-c openssl libarchive | |
- name: Build nEMU | |
run: | | |
mkdir build && cd build | |
cmake ../ -DOPENSSL_ROOT_DIR=`find /usr/local/Cellar -name 'opensslv.h' | sed 's|/openssl/[^/]*$||'` \ | |
-DLibArchive_INCLUDE_DIR=`find /usr/local/Cellar -name 'archive_entry.h' | sed 's|/[^/]*$||'` \ | |
-DNM_WITH_NCURSES=ON | |
cmake --build . |