Skip to content

Commit 2658253

Browse files
authored
feat: upgrade apisix-nginx-module to 1.7.0 & wasm-nginx-module to 0.6.0 (#191)
1 parent 892d566 commit 2658253

File tree

4 files changed

+15
-19
lines changed

4 files changed

+15
-19
lines changed

.github/workflows/package-apisix-deb-ubuntu20.04.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
timeout-minutes: 60
2121
env:
22-
PACKAGE_APISIX_VERSION: 2.12.0
22+
PACKAGE_APISIX_VERSION: 0.0.0
2323

2424
steps:
2525
- uses: actions/checkout@v2
@@ -30,8 +30,8 @@ jobs:
3030
3131
- name: run apisix packaging
3232
run: |
33-
make package type=deb app=apisix version=master checkout=master image_base=ubuntu image_tag=20.04
34-
make package type=deb app=apisix version=${PACKAGE_APISIX_VERSION} checkout=${PACKAGE_APISIX_VERSION}
33+
make package type=deb app=apisix version=${PACKAGE_APISIX_VERSION} checkout=master \
34+
image_base=ubuntu image_tag=20.04
3535
3636
- name: install apisix deb into container
3737
run: |

.github/workflows/package-apisix-rpm-el7.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ jobs:
3939
4040
- name: packaging APISIX(-remote) with remote code
4141
run: |
42-
make package type=rpm app=apisix version=2.7 checkout=release/2.7 image_base=centos image_tag=7 artifact=apisix-remote
43-
make package type=rpm app=apisix version=2.10.1 checkout=2.10.1 image_base=centos image_tag=7 artifact=apisix-remote
4442
make package type=rpm app=apisix version=master checkout=master image_base=centos image_tag=7 artifact=apisix-remote
4543
4644
- name: packaging APISIX(-local) with local code
@@ -75,23 +73,23 @@ jobs:
7573
docker exec centos7Instance bash -c "pkill -f nginx"
7674
docker exec centos7Instance bash -c "yum -y erase apisix-remote-master"
7775
78-
- name: install APISIX(-remote) 2.10.1 by rpm in container
76+
- name: install APISIX(-remote) master by rpm in container
7977
run: |
80-
docker exec centos7Instance bash -c "yum -y localinstall /output/apisix-remote-2.10.1-0.el7.x86_64.rpm"
78+
docker exec centos7Instance bash -c "yum -y localinstall /output/apisix-remote-master-0.el7.x86_64.rpm"
8179
docker exec centos7Instance bash -c "apisix start"
8280
83-
- name: check and ensure APISIX(-remote) 2.10.1 is installed
81+
- name: check and ensure APISIX(-remote) master is installed
8482
run: |
8583
code=$(curl -k -i -m 20 -o /dev/null -s -w %{http_code} http://127.0.0.1:9080/apisix/admin/routes -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1')
8684
if [ ! $code -eq 200 ]; then
8785
echo "failed: failed to install Apache APISIX by rpm"
8886
exit 1
8987
fi
9088
91-
- name: stop and uninstall APISIX(-remote) 2.10.1
89+
- name: stop and uninstall APISIX(-remote) master
9290
run: |
9391
docker exec centos7Instance bash -c "pkill -f nginx"
94-
docker exec centos7Instance bash -c "yum -y erase apisix-remote-2.10.1"
92+
docker exec centos7Instance bash -c "yum -y erase apisix-remote-master"
9593
9694
- name: install APISIX(-local) by rpm in container
9795
run: |

.github/workflows/package-apisix-rpm-el8.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ jobs:
3939
4040
- name: packaging APISIX(-remote) with remote code
4141
run: |
42-
make package type=rpm app=apisix version=2.7 checkout=release/2.7 image_base=centos image_tag=8 artifact=apisix-remote
43-
make package type=rpm app=apisix version=2.10.1 checkout=2.10.1 image_base=centos image_tag=8 artifact=apisix-remote
4442
make package type=rpm app=apisix version=master checkout=master image_base=centos image_tag=8 artifact=apisix-remote
4543
4644
- name: packaging APISIX(-local) with local code
@@ -80,23 +78,23 @@ jobs:
8078
docker exec centos8Instance bash -c "pkill -f nginx"
8179
docker exec centos8Instance bash -c "yum -y erase apisix-remote-master"
8280
83-
- name: install APISIX(-remote) 2.10.1 by rpm in container
81+
- name: install APISIX(-remote) master by rpm in container
8482
run: |
85-
docker exec centos8Instance bash -c "yum -y localinstall /output/apisix-remote-2.10.1-0.el8.x86_64.rpm"
83+
docker exec centos8Instance bash -c "yum -y localinstall /output/apisix-remote-master-0.el8.x86_64.rpm"
8684
docker exec centos8Instance bash -c "apisix start"
8785
88-
- name: check and ensure APISIX(-remote) 2.10.1 is installed
86+
- name: check and ensure APISIX(-remote) master is installed
8987
run: |
9088
code=$(curl -k -i -m 20 -o /dev/null -s -w %{http_code} http://127.0.0.1:9080/apisix/admin/routes -H 'X-API-KEY: edd1c9f034335f136f87ad84b625c8f1')
9189
if [ ! $code -eq 200 ]; then
9290
echo "failed: failed to install Apache APISIX by rpm"
9391
exit 1
9492
fi
9593
96-
- name: stop and uninstall APISIX(-remote) 2.10.1
94+
- name: stop and uninstall APISIX(-remote) master
9795
run: |
9896
docker exec centos8Instance bash -c "pkill -f nginx"
99-
docker exec centos8Instance bash -c "yum -y erase apisix-remote-2.10.1"
97+
docker exec centos8Instance bash -c "yum -y erase apisix-remote-master"
10098
10199
- name: install APISIX(-local) by rpm in container
102100
run: |

build-apisix-base.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ if ([ $# -gt 0 ] && [ "$1" == "latest" ]) || [ "$version" == "latest" ]; then
1515
else
1616
ngx_multi_upstream_module_ver="-b 1.0.1"
1717
mod_dubbo_ver="-b 1.0.2"
18-
apisix_nginx_module_ver="-b 1.6.0"
19-
wasm_nginx_module_ver="-b 0.5.1"
18+
apisix_nginx_module_ver="-b 1.7.0"
19+
wasm_nginx_module_ver="-b 0.6.0"
2020
lua_var_nginx_module_ver="-b v0.5.2"
2121
debug_args=${debug_args:-}
2222
OR_PREFIX=${OR_PREFIX:="/usr/local/openresty"}

0 commit comments

Comments
 (0)