Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • debian/nginx-package-build
1 result
Show changes
Commits on Source (4)
...@@ -12,6 +12,7 @@ after_script: ...@@ -12,6 +12,7 @@ after_script:
- mv $CI_PROJECT_DIR/nginx_${NGINX_VERSION}* $BUILD_DIR - mv $CI_PROJECT_DIR/nginx_${NGINX_VERSION}* $BUILD_DIR
- mv $CI_PROJECT_DIR/nginx-dbgsym_* $BUILD_DIR - mv $CI_PROJECT_DIR/nginx-dbgsym_* $BUILD_DIR
# Jessie
build-deb:jessie: build-deb:jessie:
stage: build stage: build
image: containers.ethitter.com:443/docker/images/debian:jessie image: containers.ethitter.com:443/docker/images/debian:jessie
...@@ -39,6 +40,7 @@ test-deb:jessie: ...@@ -39,6 +40,7 @@ test-deb:jessie:
dependencies: dependencies:
- build-deb:jessie - build-deb:jessie
# Stretch
build-deb:stretch: build-deb:stretch:
stage: build stage: build
image: containers.ethitter.com:443/docker/images/debian:stretch image: containers.ethitter.com:443/docker/images/debian:stretch
...@@ -66,6 +68,7 @@ test-deb:stretch: ...@@ -66,6 +68,7 @@ test-deb:stretch:
dependencies: dependencies:
- build-deb:stretch - build-deb:stretch
# Buster
build-deb:buster: build-deb:buster:
stage: build stage: build
image: containers.ethitter.com:443/docker/images/debian:buster image: containers.ethitter.com:443/docker/images/debian:buster
...@@ -93,9 +96,38 @@ test-deb:buster: ...@@ -93,9 +96,38 @@ test-deb:buster:
dependencies: dependencies:
- build-deb:buster - build-deb:buster
# Bullseye
build-deb:bullseye:
stage: build
image: containers.ethitter.com:443/docker/images/debian:bullseye
variables:
NGINX_BINARY: $NGINX_BINARY_BULLSEYE
NGINX_VERSION: $NGINX_VERSION_BULLSEYE
BUILD_DIR: 'build-bullseye'
script:
- cd source
- debuild -us -uc
artifacts:
paths:
- $BUILD_DIR
test-deb:bullseye:
stage: test
image: containers.ethitter.com:443/docker/images/debian:bullseye
before_script:
- export BUILD_DIR="${CI_PROJECT_DIR}/build-bullseye"
script:
- dpkg -i ${BUILD_DIR}/nginx_${NGINX_VERSION_BULLSEYE}*.deb
- nginx -V
after_script:
- ''
dependencies:
- build-deb:bullseye
# Package for aptly
aptly: aptly:
stage: deploy stage: deploy
image: containers.ethitter.com:443/docker/images/debian:stretch image: containers.ethitter.com:443/docker/images/debian:bullseye
before_script: before_script:
- '' - ''
script: script:
......
nginx (1.21.6-1~eth) stable; urgency=high
* nginx 1.21.6
* OpenSSL 1.1.1o
* automated build via https://git.ethitter.com/debian/nginx-package-build/
-- Erick Hitter <nginx-build@mxh.ethitter.com> Sat, 4 Jun 2022 18:30:00 +0000
nginx (1.19.8-1~eth) stable; urgency=high nginx (1.19.8-1~eth) stable; urgency=high
* nginx 1.19.8 * nginx 1.19.8
......