Disable neverbleed for macos
Disable neverbleed for macos because it does not work with libressl installed on github actions.
This commit is contained in:
parent
d801a23f91
commit
0d1894ecbb
|
@ -150,8 +150,18 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
autoreconf -i
|
autoreconf -i
|
||||||
./configure
|
./configure
|
||||||
- name: Configure cmake
|
- name: Configure cmake (Linux)
|
||||||
if: matrix.buildtool == 'cmake'
|
if: matrix.buildtool == 'cmake' && runner.os == 'Linux'
|
||||||
|
run: |
|
||||||
|
make dist
|
||||||
|
VERSION=$(grep PACKAGE_VERSION config.h | cut -d' ' -f3 | tr -d '"')
|
||||||
|
tar xf nghttp2-$VERSION.tar.gz
|
||||||
|
cd nghttp2-$VERSION
|
||||||
|
echo 'NGHTTP2_CMAKE_DIR='"$PWD" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
cmake -DENABLE_WERROR=1 -DWITH_MRUBY=1 -DWITH_NEVERBLEED=1 -DENABLE_APP=1 $EXTRA_CMAKE_OPTS -DCPPFLAGS="$CPPFLAGS" -DLDFLAGS="$LDFLAGS" .
|
||||||
|
- name: Configure cmake (MacOS)
|
||||||
|
if: matrix.buildtool == 'cmake' && runner.os == 'macOS'
|
||||||
run: |
|
run: |
|
||||||
make dist
|
make dist
|
||||||
VERSION=$(grep PACKAGE_VERSION config.h | cut -d' ' -f3 | tr -d '"')
|
VERSION=$(grep PACKAGE_VERSION config.h | cut -d' ' -f3 | tr -d '"')
|
||||||
|
@ -162,12 +172,17 @@ jobs:
|
||||||
# This fixes infamous 'stdio.h not found' error.
|
# This fixes infamous 'stdio.h not found' error.
|
||||||
echo 'SDKROOT='"$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV
|
echo 'SDKROOT='"$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV
|
||||||
|
|
||||||
cmake -DENABLE_WERROR=1 -DWITH_MRUBY=1 -DWITH_NEVERBLEED=1 -DENABLE_APP=1 $EXTRA_CMAKE_OPTS -DCPPFLAGS="$CPPFLAGS" -DLDFLAGS="$LDFLAGS" .
|
cmake -DENABLE_WERROR=1 -DWITH_MRUBY=1 -DENABLE_APP=1 $EXTRA_CMAKE_OPTS -DCPPFLAGS="$CPPFLAGS" -DLDFLAGS="$LDFLAGS" .
|
||||||
- name: Build nghttp2 with autotools
|
- name: Build nghttp2 with autotools (Linux)
|
||||||
if: matrix.buildtool == 'autotools'
|
if: matrix.buildtool == 'autotools' && runner.os == 'Linux'
|
||||||
run: |
|
run: |
|
||||||
make -j"$(nproc 2> /dev/null || sysctl -n hw.ncpu)" distcheck \
|
make -j"$(nproc)" distcheck \
|
||||||
DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-neverbleed --with-libev --enable-werror $EXTRA_AUTOTOOLS_OPTS CPPFLAGS=\"$CPPFLAGS\" LDFLAGS=\"$LDFLAGS\""
|
DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-neverbleed --with-libev --enable-werror $EXTRA_AUTOTOOLS_OPTS CPPFLAGS=\"$CPPFLAGS\" LDFLAGS=\"$LDFLAGS\""
|
||||||
|
- name: Build nghttp2 with autotools (MacOS)
|
||||||
|
if: matrix.buildtool == 'autotools' && runner.os == 'macOS'
|
||||||
|
run: |
|
||||||
|
make -j"$(sysctl -n hw.ncpu)" distcheck \
|
||||||
|
DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-libev --enable-werror $EXTRA_AUTOTOOLS_OPTS CPPFLAGS=\"$CPPFLAGS\" LDFLAGS=\"$LDFLAGS\""
|
||||||
- name: Build nghttp2 with cmake
|
- name: Build nghttp2 with cmake
|
||||||
if: matrix.buildtool == 'cmake'
|
if: matrix.buildtool == 'cmake'
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue