Skip to content
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

tests: bumped the NGINX core to 1.27.1. #104

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

tests: bumped the NGINX core to 1.27.1

9e69db1
Select commit
Loading
Failed to load commit list.
Open

tests: bumped the NGINX core to 1.27.1. #104

tests: bumped the NGINX core to 1.27.1
9e69db1
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Aug 16, 2024 in 4m 29s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #104 tests: bumped the NGINX core to 1.27.1..
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language C
Operating System Linux (Focal)
Compiler Version gcc
Build Configuration
{
  "language": "c",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "branches": {
    "only": [
      "master"
    ]
  },
  "cache": {
    "directories": [
      "download-cache"
    ]
  },
  "compiler": [
    "gcc"
  ],
  "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\"}={:LIBDRIZZLE_PREFIX=>\"/opt/drizzle\"}={:LIBDRIZZLE_INC=>\"$LIBDRIZZLE_PREFIX/include/libdrizzle-1.0\"}={:LIBDRIZZLE_LIB=>\"$LIBDRIZZLE_PREFIX/lib\"} jobs={:NGINX_VERSION=>\"1.27.1\"}"
  ],
  "addons": {
    "postgresql": "13"
  },
  "services": [
    "memcached",
    "redis",
    "postgresql",
    "mysql"
  ],
  "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": [
    "echo $HOME",
    "if [ ! -d download-cache ]; then mkdir download-cache; fi",
    "rm -fr download-cache/drizzle7-2011.07.21.tar.gz",
    "if [ ! -f download-cache/drizzle7-2011.07.21.tar.gz ]; then wget -P download-cache https://github.com/openresty/openresty-deps-prebuild/releases/download/v20230902/drizzle7-2011.07.21.tar.gz; fi",
    "mkdir -p ~/work/nginx",
    "git clone https://github.com/openresty/ngx_http_redis ~/work/nginx/ngx_http_redis",
    "git clone https://github.com/openresty/openresty-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/lua-resty-core.git ../lua-resty-core",
    "git clone https://github.com/openresty/lua-resty-lrucache.git ../lua-resty-lrucache",
    "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",
    "git clone https://github.com/openresty/xss-nginx-module.git ../xss-nginx-module",
    "git clone https://github.com/openresty/redis2-nginx-module.git ../redis2-nginx-module",
    "git clone https://github.com/openresty/headers-more-nginx-module.git ../headers-more-nginx-module",
    "git clone https://github.com/openresty/rds-json-nginx-module.git ../rds-json-nginx-module",
    "git clone https://github.com/openresty/drizzle-nginx-module.git ../drizzle-nginx-module",
    "git clone https://github.com/openresty/memc-nginx-module.git ../memc-nginx-module",
    "git clone https://github.com/openresty/ngx_postgres.git ../postgres-nginx-module",
    "git clone https://github.com/openresty/openresty.git ../ngx_openresty"
  ],
  "before_script": [
    "mysql -uroot -e \"create database ngx_test; CREATE USER 'ngx_test'@'%' IDENTIFIED WITH mysql_native_password BY 'ngx_test'; grant all on ngx_test.* to 'ngx_test'@'%'; flush privileges;\"",
    "psql -c \"create database ngx_test;\" -U postgres",
    "psql -c \"create user ngx_test with password 'ngx_test';\" -U postgres",
    "psql -c \"grant all privileges on database ngx_test to ngx_test;\" -U postgres"
  ],
  "script": [
    "tar xzf download-cache/drizzle7-2011.07.21.tar.gz && cd drizzle7-2011.07.21",
    "./configure --prefix=$LIBDRIZZLE_PREFIX --without-server > build.log 2>&1 || (cat build.log && exit 1)",
    "sudo PATH=$PATH make libdrizzle-1.0 install-libdrizzle-1.0 > build.log 2>&1 || (cat build.log && exit 1)",
    "cd ..",
    "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/openresty-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 -I. -r t"
  ]
}