We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eaf11c commit 294db83Copy full SHA for 294db83
scripts.sh
@@ -81,13 +81,17 @@ cp_bin() {
81
}
82
83
make_release() {
84
+ set -e
85
+
86
local moduleVersion=${1}
87
88
NGINX_VERSION=${2}
89
90
printf "${BLUE}Making release for version ${moduleVersion} for NGINX ${NGINX_VERSION}...${NC}\n"
91
- build_module
92
+ rebuild_module
93
+ rebuild_test_runner
94
+ test
95
cp_bin
96
97
mkdir -p release
@@ -100,7 +104,7 @@ make_release() {
100
104
# See: https://nginx.org/en/download.html
101
105
make_releases() {
102
106
local moduleVersion=$(git describe --tags --abbrev=0)
103
- local nginxVersions=(1.20.2 1.22.1 1.24.0 1.23.4)
107
+ local nginxVersions=('1.25.1' '1.24.0' '1.22.1' '1.20.2')
108
109
rm -rf release/*
110
0 commit comments