jjb: Add dev_gerrit_babeltrace_black
authorMichael Jeanson <mjeanson@efficios.com>
Fri, 9 Aug 2019 22:16:56 +0000 (18:16 -0400)
committerMichael Jeanson <mjeanson@efficios.com>
Fri, 9 Aug 2019 22:16:56 +0000 (18:16 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
jobs/babeltrace.yaml
scripts/babeltrace/black.sh [new file with mode: 0644]

index 43ffa8d0b3175b73bcf7ba120f09aae9f67482b9..5e0d6d1a4b738e46f24a8ba66d5d451aa29171d5 100644 (file)
           categories:
             - 'gerrit'
 
+- job-template:
+    name: dev_gerrit_babeltrace_black
+    defaults: babeltrace
+    concurrent: true
+
+    scm:
+      - git:
+          url: https://review.lttng.org/babeltrace
+          refspec: 'refs/changes/*:refs/changes/*'
+          branches:
+            - '$GERRIT_REFSPEC'
+          basedir: src/babeltrace
+          skip-tag: true
+
+    triggers:
+      - gerrit:
+          trigger-on:
+            - comment-added-event:
+                approval-category: 'CI-Build'
+                approval-value: 1
+          projects:
+            - project-compare-type: 'PLAIN'
+              project-pattern: 'babeltrace'
+              branches:
+                - branch-compare-type: 'ANT'
+                  branch-pattern: '**'
+          trigger-for-unreviewed-patches: true
+
+    node: 'amd64'
+
+    builders:
+      - shell:
+         !include-raw-escape: scripts/babeltrace/black.sh
+
+    properties:
+      - inject:
+          properties-content: |
+            PROJECT_NAME=babeltrace
+      - build-discarder:
+          days-to-keep: 1
+      - throttle:
+          option: 'category'
+          categories:
+            - 'gerrit'
+
 - job-template:
     name: babeltrace_{version}_cppcheck
     defaults: babeltrace
           build: !!python/tuple [std]
           conf: !!python/tuple [std, prod]
           filter: ''
+      - 'dev_gerrit_babeltrace_black'
 
 
 - project:
diff --git a/scripts/babeltrace/black.sh b/scripts/babeltrace/black.sh
new file mode 100644 (file)
index 0000000..5d6c6df
--- /dev/null
@@ -0,0 +1,37 @@
+#!/bin/sh -exu
+#
+# Copyright (C) 2015 Michael Jeanson <mjeanson@efficios.com>
+# Copyright (C) 2019 Francis Deslauriers <francis.deslauriers@efficios.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+PYTHON3=python3
+
+PYENV_HOME="$WORKSPACE/.pyenv/"
+
+# Delete previously built virtualenv
+if [ -d "$PYENV_HOME" ]; then
+    rm -rf "$PYENV_HOME"
+fi
+
+# Create virtualenv and install necessary packages
+virtualenv --system-site-packages -p ${PYTHON3} "$PYENV_HOME"
+
+set +u
+. "$PYENV_HOME/bin/activate"
+set -u
+
+pip install --quiet black
+
+black --diff --check src/babeltrace
This page took 0.024971 seconds and 4 git commands to generate.