diff --git a/.travis.yml b/.travis.yml index 4dd531e0..1df2c948 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,10 @@ language: python sudo: true env: - - LUA_VERSION="5.1" KONG_VERSION="0.13.0-0" LUA_RESTY_OPENIDC_VERSION="1.6.0" - - LUA_VERSION="5.1" KONG_VERSION="0.12.3-0" LUA_RESTY_OPENIDC_VERSION="1.6.0" - - LUA_VERSION="5.1" KONG_VERSION="0.11.2-0" LUA_RESTY_OPENIDC_VERSION="1.6.0" - - LUA_VERSION="5.1" KONG_VERSION="1.0.2-0" LUA_RESTY_OPENIDC_VERSION="1.6.0" + - LUA_VERSION="5.1" KONG_VERSION="0.13.0-0" LUA_RESTY_OPENIDC_VERSION="1.6.1-1" + - LUA_VERSION="5.1" KONG_VERSION="0.12.3-0" LUA_RESTY_OPENIDC_VERSION="1.6.1-1" + - LUA_VERSION="5.1" KONG_VERSION="0.11.2-0" LUA_RESTY_OPENIDC_VERSION="1.6.1-1" + - LUA_VERSION="5.1" KONG_VERSION="1.0.2-0" LUA_RESTY_OPENIDC_VERSION="1.6.1-1" script: - sudo -E bash ci/root.sh diff --git a/ci/setup.sh b/ci/setup.sh index 94ae142a..31c159e1 100644 --- a/ci/setup.sh +++ b/ci/setup.sh @@ -3,7 +3,7 @@ set -e export LUA_VERSION=${LUA_VERSION:-5.1} export KONG_VERSION=${KONG_VERSION:-0.13.1-0} -export LUA_RESTY_OPENIDC_VERSION=${LUA_RESTY_OPENIDC_VERSION:-1.6.0} +export LUA_RESTY_OPENIDC_VERSION=${LUA_RESTY_OPENIDC_VERSION:-1.6.1-1} pip install hererocks hererocks lua_install -r^ --lua=${LUA_VERSION} diff --git a/kong-oidc-1.1.0-0.rockspec b/kong-oidc-1.1.0-0.rockspec index d01be203..f363bb32 100644 --- a/kong-oidc-1.1.0-0.rockspec +++ b/kong-oidc-1.1.0-0.rockspec @@ -22,7 +22,7 @@ description = { license = "Apache 2.0" } dependencies = { - "lua-resty-openidc ~> 1.6.0" + "lua-resty-openidc ~> 1.6.1-1" } build = { type = "builtin", diff --git a/test/docker/unit/Dockerfile b/test/docker/unit/Dockerfile index 7f13024c..53eedbfd 100644 --- a/test/docker/unit/Dockerfile +++ b/test/docker/unit/Dockerfile @@ -12,7 +12,7 @@ RUN luarocks install luaunit RUN luarocks install lua-cjson # Change openidc version when version in rockspec changes -RUN luarocks install lua-resty-openidc 1.6.0 +RUN luarocks install lua-resty-openidc 1.6.1-1 WORKDIR /usr/local/kong-oidc