summaryrefslogtreecommitdiff
path: root/docker/files/custom-vars
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2017-05-12 19:25:13 +0200
committervarac <varac@users.noreply.github.com>2017-05-18 13:35:38 +0200
commit33e0511001033fb62833a5205c96af66f042fc49 (patch)
tree5b9ff276ceb8e676423e9acc5e0d3a5b89fd34ab /docker/files/custom-vars
parentf0938ea32837b4f2fb04aa995ea114fdc0cfdd8e (diff)
Add gitlab-ci.yml to allow local and remote builds
See https://github.com/pixelated/pixelated-user-agent.git for the documentation.
Diffstat (limited to 'docker/files/custom-vars')
-rw-r--r--docker/files/custom-vars18
1 files changed, 18 insertions, 0 deletions
diff --git a/docker/files/custom-vars b/docker/files/custom-vars
new file mode 100644
index 00000000..cd8d8bbf
--- /dev/null
+++ b/docker/files/custom-vars
@@ -0,0 +1,18 @@
+# Set custom enviroment variables here
+# or use gitlab CI to export them either
+# in your .gitlab-ci.yml file or via
+# secret variables from the web interface
+# https://docs.gitlab.com/ce/ci/variables/README.html
+
+export DEBFULLNAME=${DEBFULLNAME:-"Pixelated automated build"}
+
+export REPOS=${REPOS:-"snapshots"}
+
+export COMPONENTS=${COMPONENTS:-"$REPOS"}
+
+export ARCH=${ARCH:-"amd64"}
+export DIST=${DIST:-"jessie"}
+
+# Lintian vars
+LINTIAN_DEFAULT_OPTS=(-X filename-length)
+export LINTIAN_OPTS=("${LINTIAN_OPTS:-${LINTIAN_DEFAULT_OPTS[@]}}")