Skip to content

Commit

Permalink
feat(lib): remove version check from resty.events
Browse files Browse the repository at this point in the history
  • Loading branch information
bungle committed Jun 19, 2024
1 parent 830ae32 commit e84e0d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/build_and_test_with_resty_events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
openresty-version: [1.19.9.1, 1.21.4.1, 1.21.4.3, 1.25.3.1]
openresty-version: [1.19.9.1, 1.21.4.3, 1.25.3.1]

steps:
- name: Update and install OS dependencies
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set environment variables
env:
OPENRESTY_VER: ${{ matrix.openresty-version }}
RESTY_EVENTS_VER: 0.2.1
RESTY_EVENTS_VER: 0.3.0
LUAROCKS_VER: 3.9.0
OPENSSL_VER: 1.1.1q
PCRE_VER: 8.45
Expand All @@ -60,11 +60,9 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/.github/workflows/build_and_test_with_resty_events.yml') }}-${{ matrix.openresty-version }}

- name: Add to Path
if: steps.cache-deps.outputs.cache-hit != 'true'
run: echo "$INSTALL_ROOT/bin:$INSTALL_ROOT/nginx/sbin:$INSTALL_ROOT/luajit/bin:/usr/bin" >> $GITHUB_PATH

- name: Build and install OpenSSL
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
curl -sSLO https://www.openssl.org/source/openssl-$OPENSSL.tar.gz
tar -xzf openssl-$OPENSSL.tar.gz
Expand All @@ -75,14 +73,12 @@ jobs:
- name: Checkout lua-resty-events
uses: actions/checkout@v3
if: steps.cache-deps.outputs.cache-hit != 'true'
with:
repository: Kong/lua-resty-events
ref: refs/tags/0.2.1
ref: refs/tags/0.3.0
path: lua-resty-events

- name: Build and install OpenResty
if: steps.cache-deps.outputs.cache-hit != true
run: |
curl -sSLO https://openresty.org/download/openresty-$OPENRESTY.tar.gz
tar -xzf openresty-$OPENRESTY.tar.gz
Expand All @@ -106,7 +102,6 @@ jobs:
make install LUA_LIBDIR=$INSTALL_ROOT/lualib
- name: Install LuaRocks
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
curl -sSLO https://luarocks.org/releases/luarocks-$LUAROCKS.tar.gz
tar -xzf luarocks-$LUAROCKS.tar.gz
Expand All @@ -120,19 +115,16 @@ jobs:
make install
- name: Install manual dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
luarocks install luacheck
- name: Install Test::NGINX
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
sudo apt-get install cpanminus
cpanm --notest --local-lib=$HOME/perl5 local::lib && eval $(perl -I $HOME/perl5/lib/perl5/ -Mlocal::lib)
cpanm --notest Test::Nginx
- name: Install lua-resty-events
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
cd lua-resty-events
OPENRESTY_PREFIX=$INSTALL_ROOT PREFIX=$INSTALL_ROOT LUA_LIB_DIR=$INSTALL_ROOT/lualib make install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_with_worker_events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
openresty-version: [1.21.4.1]
openresty-version: [1.21.4.3]

steps:
- name: Update and install OS dependencies
Expand Down
3 changes: 0 additions & 3 deletions lib/resty/healthcheck.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ local type = type
local assert = assert


local RESTY_EVENTS_VER = [[^0\.[12]\.\d+$]]
local RESTY_WORKER_EVENTS_VER = "0.3.3"


Expand Down Expand Up @@ -113,8 +112,6 @@ local function load_events_module(self)

elseif self.events_module == "resty.events" then
worker_events = require("resty.events.compat")
local version_match = ngx.re.match(worker_events._VERSION, RESTY_EVENTS_VER, "o")
assert(version_match, "unsupported lua-resty-events version")

else
error("unknown events module")
Expand Down

0 comments on commit e84e0d9

Please sign in to comment.