Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
et-iedo-public
debian-packages
gitlab-package-build
Commits
a7d036db
Commit
a7d036db
authored
Dec 14, 2021
by
Adam Lewenberg
Browse files
some git cleanup
parent
0534b18a
Pipeline
#31888
failed with stages
in 6 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci-bullseye.yml
deleted
100644 → 0
View file @
0534b18a
# Build a bullseye Debian package
stages
:
-
startup
-
build-deb
variables
:
# DOCKER_DEB_PACKAGE_BUILDER: this is the name of the
# of the Docker image that builds the Debian package. There should
# be little reason to change this value.
DOCKER_DEB_PACKAGE_BUILDER
:
macrotex/debian-package-docker
init-message
:
stage
:
startup
script
:
-
echo "building Debian bullseye package"
show-variables
:
stage
:
startup
script
:
-
echo $CI_BUILDS_DIR
-
echo $CI_PROJECT_DIR
-
echo $DOCKER_DEB_PACKAGE_BUILDER
build-debian-package
:
stage
:
build-deb
image
:
name
:
$DOCKER_DEB_PACKAGE_BUILDER:bullseye
entrypoint
:
[
"
/bin/bash"
]
script
:
|-
RUN_LINTIAN=YES BUILD_DIRECTORY=$CI_PROJECT_DIR /root/build-pkg.sh
.gitlab-ci-buster.yml
deleted
100644 → 0
View file @
0534b18a
# Build a buster Debian package
stages
:
-
startup
-
build-deb
variables
:
# DOCKER_DEB_PACKAGE_BUILDER: this is the name of the
# of the Docker image that builds the Debian package. There should
# be little reason to change this value.
DOCKER_DEB_PACKAGE_BUILDER
:
macrotex/debian-package-docker
init-message
:
stage
:
startup
script
:
-
echo "building Debian buster package"
show-variables
:
stage
:
startup
script
:
-
echo $CI_BUILDS_DIR
-
echo $CI_PROJECT_DIR
-
echo $DOCKER_DEB_PACKAGE_BUILDER
build-debian-package
:
stage
:
build-deb
image
:
name
:
$DOCKER_DEB_PACKAGE_BUILDER:buster
entrypoint
:
[
"
/bin/bash"
]
script
:
|-
RUN_LINTIAN=YES BUILD_DIRECTORY=$CI_PROJECT_DIR /root/build-pkg.sh
.gitlab-ci-sid.yml
deleted
100644 → 0
View file @
0534b18a
# Build a sid Debian package
stages
:
-
startup
-
build-deb
variables
:
# DOCKER_DEB_PACKAGE_BUILDER: this is the name of the
# of the Docker image that builds the Debian package. There should
# be little reason to change this value.
DOCKER_DEB_PACKAGE_BUILDER
:
macrotex/debian-package-docker
init-message
:
stage
:
startup
script
:
-
echo "building Debian sid package"
show-variables
:
stage
:
startup
script
:
-
echo $CI_BUILDS_DIR
-
echo $CI_PROJECT_DIR
-
echo $DOCKER_DEB_PACKAGE_BUILDER
build-debian-package
:
stage
:
build-deb
image
:
name
:
$DOCKER_DEB_PACKAGE_BUILDER:sid
entrypoint
:
[
"
/bin/bash"
]
script
:
|-
RUN_LINTIAN=YES BUILD_DIRECTORY=$CI_PROJECT_DIR /root/build-pkg.sh
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment