Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
edb0bf1f
Commit
edb0bf1f
authored
Nov 16, 2020
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[WIP] GH actions
parent
444fd818
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
108 additions
and
2 deletions
+108
-2
.github/workflows/build.yml
.github/workflows/build.yml
+105
-0
integration-tests/setenv.in
integration-tests/setenv.in
+3
-2
No files found.
.github/workflows/build.yml
0 → 100644
View file @
edb0bf1f
name
:
build
on
:
push
jobs
:
build
:
runs-on
:
${{ matrix.os }}
strategy
:
matrix
:
os
:
[
ubuntu-18.04
,
macos-10.15
]
compiler
:
[
gcc
,
clang
]
buildtool
:
[
autotools
,
cmake
]
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Linux setup
if
:
runner.os == 'Linux'
run
:
|
sudo apt-get install \
g++-8 \
clang-10 \
autoconf \
automake \
autotools-dev \
libtool \
pkg-config \
zlib1g-dev \
libcunit1-dev \
libssl-dev \
libxml2-dev \
libev-dev \
libevent-dev \
libjansson-dev \
libjemalloc-dev \
libc-ares-dev \
cmake \
cmake-data
echo 'CPPFLAGS=-fsanitize=address' >> $GITHUB_ENV
echo 'LDFLAGS=-fsanitize=address' >> $GITHUB_ENV
-
name
:
MacOS setup
if
:
runner.os == 'macOS'
run
:
|
brew install \
libev \
libevent \
c-ares \
cunit \
libressl \
autoconf \
automake \
pkg-config \
libtool
echo 'PKG_CONFIG_PATH=/usr/local/opt/libressl/lib/pkgconfig:/usr/local/opt/libxml2/lib/pkgconfig' >> $GITHUB_ENV
# This fixes infamous 'stdio.h not found' error.
echo 'SDKROOT='"$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV
-
name
:
Setup clang (Linux)
if
:
runner.os == 'Linux' && matrix.compiler == 'clang'
run
:
|
echo 'CC=clang-10' >> $GITHUB_ENV
echo 'CXX=clang++-10' >> $GITHUB_ENV
-
name
:
Setup clang (MacOS)
if
:
runner.os == 'macOS' && matrix.compiler == 'clang'
run
:
|
echo 'CC=clang' >> $GITHUB_ENV
echo 'CXX=clang++' >> $GITHUB_ENV
-
name
:
Setup gcc (Linux)
if
:
runner.os == 'Linux' && matrix.compiler == 'gcc'
run
:
|
echo 'CC=gcc-8' >> $GITHUB_ENV
echo 'CXX=g++-8' >> $GITHUB_ENV
-
name
:
Setup gcc (MacOS)
if
:
runner.os == 'macOS' && matrix.compiler == 'gcc'
run
:
|
echo 'CC=gcc' >> $GITHUB_ENV
echo 'CXX=g++' >> $GITHUB_ENV
-
name
:
Setup git submodules
run
:
|
git submodule update --init
-
name
:
Configure autotools
if
:
matrix.buildtool == 'autotools'
run
:
|
autoreconf -i
./configure --enable-werror --with-mruby
-
name
:
Configure cmake
if
:
matrix.buildtool == 'cmake'
run
:
|
cmake -DENABLE_WERROR=1 -DWITH_MRUBY=1 -DWITH_NEVERBLEED=1 -DCPPFLAGS="$CPPFLAGS" -DLDFLAGS="$LDFLAGS" .
-
name
:
Build nghttp2 with autotools
if
:
matrix.buildtool == 'autotools'
run
:
|
make distcheck \
DISTCHECK_CONFIGURE_FLAGS="--with-mruby --with-neverbleed --enable-werror CPPFLAGS=\"$CPPFLAGS\" LDFLAGS=\"$LDFLAGS\" PKG_CONFIG_PATH=$PKG_CONFIG_PATH"
-
name
:
Build nghttp2 with cmake
if
:
matrix.buildtool == 'cmake'
run
:
|
make
make check
-
name
:
Integration test
# Integration tests for nghttpx; autotools erases build
# artifacts.
if
:
matrix.buildtool == 'cmake'
run
:
|
cd integration-tests
make itprep it
integration-tests/setenv.in
View file @
edb0bf1f
...
@@ -5,8 +5,9 @@ if [ -d "$libdir/.libs" ]; then
...
@@ -5,8 +5,9 @@ if [ -d "$libdir/.libs" ]; then
libdir
=
"
$libdir
/.libs"
libdir
=
"
$libdir
/.libs"
fi
fi
export
CGO_CFLAGS
=
"-I@abs_top_srcdir@/lib/includes -I@abs_top_builddir@/lib/includes"
export
CGO_CFLAGS
=
"-I@abs_top_srcdir@/lib/includes -I@abs_top_builddir@/lib/includes @CFLAGS@"
export
CGO_LDFLAGS
=
"-L
$libdir
"
export
CGO_CPPFLAGS
=
"@CPPFLAGS@"
export
CGO_LDFLAGS
=
"-L
$libdir
@LDFLAGS@"
export
LD_LIBRARY_PATH
=
"
$libdir
"
export
LD_LIBRARY_PATH
=
"
$libdir
"
export
GODEBUG
=
cgocheck
=
0
export
GODEBUG
=
cgocheck
=
0
"
$@
"
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment