-
Notifications
You must be signed in to change notification settings - Fork 56
travis ci support, some cosmetic improvements #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
(*) initial travis ci support
(*) removed "upstream keepalive module" since modern nginx supports that natively (*) changed memcached regex
- Loading branch information
commit 410e7d76d21feffadf0f86ba6b2bb52d299a4a93
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| sudo: required | ||
| dist: trusty | ||
|
|
||
| os: linux | ||
|
|
||
| language: c | ||
|
|
||
| compiler: | ||
| - gcc | ||
| - clang | ||
|
|
||
| env: | ||
| global: | ||
| - LUAJIT_PREFIX=/opt/luajit21 | ||
| - LUAJIT_LIB=$LUAJIT_PREFIX/lib | ||
| - LD_LIBRARY_PATH=$LUAJIT_LIB:$LD_LIBRARY_PATH | ||
| - LUAJIT_INC=$LUAJIT_PREFIX/include/luajit-2.1 | ||
| - LUA_INCLUDE_DIR=$LUAJIT_INC | ||
| - LUA_CMODULE_DIR=/lib | ||
| - JOBS=3 | ||
| - NGX_BUILD_JOBS=$JOBS | ||
| matrix: | ||
| - NGINX_VERSION=1.9.15 | ||
|
|
||
| services: | ||
| - memcache | ||
|
|
||
| before_install: | ||
| - sudo apt-get install -qq -y axel cpanminus libtest-base-perl libtext-diff-perl liburi-perl libwww-perl libtest-longstring-perl liblist-moreutils-perl > build.log 2>&1 || (cat build.log && exit 1) | ||
|
|
||
| install: | ||
| - git clone https://github.com/openresty/nginx-devel-utils.git | ||
| - git clone https://github.com/openresty/openresty.git ../openresty | ||
| - git clone https://github.com/openresty/no-pool-nginx.git ../no-pool-nginx | ||
| - git clone https://github.com/simpl/ngx_devel_kit.git ../ndk-nginx-module | ||
| - git clone https://github.com/openresty/test-nginx.git | ||
| - git clone -b v2.1-agentzh https://github.com/openresty/luajit2.git | ||
| - git clone https://github.com/openresty/lua-nginx-module.git ../lua-nginx-module | ||
| - git clone https://github.com/openresty/nginx-eval-module.git ../eval-nginx-module | ||
| - git clone https://github.com/openresty/echo-nginx-module.git ../echo-nginx-module | ||
| - git clone https://github.com/openresty/set-misc-nginx-module.git ../set-misc-nginx-module | ||
|
|
||
| script: | ||
| - cd luajit2 | ||
| - make -j$JOBS CCDEBUG=-g Q= PREFIX=$LUAJIT_PREFIX CC=$CC XCFLAGS='-DLUA_USE_APICHECK -DLUA_USE_ASSERT' > build.log 2>&1 || (cat build.log && exit 1) | ||
| - sudo make install PREFIX=$LUAJIT_PREFIX > build.log 2>&1 || (cat build.log && exit 1) | ||
| - cd .. | ||
| - cd test-nginx && sudo cpanm . && cd .. | ||
| - export PATH=$PWD/work/nginx/sbin:$PWD/nginx-devel-utils:$PATH | ||
| - export NGX_BUILD_CC=$CC | ||
| - sh util/build.sh $NGINX_VERSION > build.log 2>&1 || (cat build.log && exit 1) | ||
| - nginx -V | ||
| - ldd `which nginx`|grep luajit | ||
| - prove -r t |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you make these changes a separate PR? I hope PRs are self-contained. Thank you very much!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@chipitsine I can do the split myself this time. Please use atomic PRs next time. Thanks!