summaryrefslogtreecommitdiff
path: root/devjenkins/root/jobs/configuration
diff options
context:
space:
mode:
Diffstat (limited to 'devjenkins/root/jobs/configuration')
-rwxr-xr-xdevjenkins/root/jobs/configuration86
1 files changed, 86 insertions, 0 deletions
diff --git a/devjenkins/root/jobs/configuration b/devjenkins/root/jobs/configuration
new file mode 100755
index 0000000..f2677ab
--- /dev/null
+++ b/devjenkins/root/jobs/configuration
@@ -0,0 +1,86 @@
+# OBS related parameters
+OBS_URL=
+OBS_API_URL=
+OBS_API_USERNAME=
+OBS_API_PASSWD=
+
+# Gerrit related parameters
+GERRIT_USERNAME=tizenrobot
+GERRIT_HOSTNAME=tz.otcshare.org
+GERRIT_SSHPORT=29418
+GERRIT_SILENT_MODE=0
+
+# Redis server
+REDIS_HOST=127.0.0.1
+REDIS_PORT=6379
+
+# Git related parameters
+GIT_CACHE_DIR=/var/lib/jenkins/git-cache
+MAPPING_PROJECTS=
+MAPPING_PRJ=scm/git-obs-mapping
+REPOSYAML_PRJ=scm/meta/snapshot-repo-conf
+
+# Image Testing parameters
+TESTABLE_IMAGE_DOWNLOADABLES=bz2,bmap
+TESTABLE_IMAGE_FILTER=*.bz2
+
+#Host name of smtp server
+SMTP_SERVER=
+#The name displayed in mail for jenkins usage
+NOREPLY_EMAIL_SENDER=noreply@tizen.org
+#Mailinglist which jenkins will send SR notification to it
+MAILINGLIST=
+
+# Download server configuration
+URL_PUBLIC_REPO_BASE=
+PATH_REPO_BASE=/srv/download/
+PATH_LIVE_REPO_BASE=/srv/download/live/
+
+# IRIS server configuration
+IRIS_PUB_ENABLED=0
+IRIS_USERNAME=
+IRIS_PASSWORDX=
+IRIS_SERVER=
+
+## Image sync configuration
+IMG_SYNC_DEST_BASE=
+
+## VM configuration
+USE_VM=1
+VM_IMAGE=mic-appliance
+VM_MEMORY=8192
+VM_CPUS=8
+
+## Manifest content configuraion
+GERRIT_FETCH_URL=ssh://review.tizen.org
+GERRIT_REVIEW_URL=https://review.tizen.org/gerrit
+
+## List of active projects
+ACTIVE_PROJECTS=Tizen:Common,Tizen:IVI,Tizen:Mobile,Tizen:TV,Tizen:Wearable
+# Dry-run mode for sync-obs
+SYNCOBS_DRYRUN=1
+
+############################################
+# Below are sync instance parameters. Please
+# enable them when deploy sync instance.
+############################################
+
+# Sync target gerrit related parameters
+#SYNC_GERRIT_USERNAME=
+#SYNC_GERRIT_HOSTNAME=
+#SYNC_GERRIT_SSHPORT=29418
+
+# The parent project of projects sync to gerrit
+#GERRIT_PARENT_PROJECT=rsa-public-project
+
+# Use below regular expression to control which project should be synced to
+# inside gerrit. Generally, projects under scm/ are specified for each domain,
+# which should not be synced to inside.
+#
+# Example to sync all refs for platform/.* projects, and tizen branches and tags
+# for apps/web/.* projects.
+# [{'project':'^platform/.*$', 'refname':'.*'},
+# {'project':'^apps/web/.*$', 'refname':'^(tizen|refs/tags/.*)$'}
+# ]
+#
+#SYNC_GERRIT_PROJECT_PATTERN=[{'project':'^(?!scm/).*$', 'refname':'.*'}]