jjb: remove unused linux-rseq jobs
authorMichael Jeanson <mjeanson@efficios.com>
Wed, 15 Dec 2021 15:43:25 +0000 (10:43 -0500)
committerMichael Jeanson <mjeanson@efficios.com>
Wed, 15 Dec 2021 15:43:25 +0000 (10:43 -0500)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Change-Id: I21566306a04a17c2a54201061e18a349c90f0aaf

jobs/librseq.yaml
jobs/linux-rseq.yaml [deleted file]
scripts/common/coverity.sh
scripts/common/scan-build.sh

index e82a0cae3a1e1995989ff1cf67262c1ae0fb4f9e..b0b1f3f1a57fb67f6a0e5096ac6f2027cdeb75c3 100644 (file)
     name: 'rseq'
     description: 'Restartable sequences'
     view-type: list
-    regex: 'librseq_.*|linux-rseq_.*'
+    regex: 'librseq_.*'
 
 
 ## Project
diff --git a/jobs/linux-rseq.yaml b/jobs/linux-rseq.yaml
deleted file mode 100644 (file)
index 966fa0e..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-- defaults:
-    name: linux-rseq
-    description: |
-
-      <p>Job is managed by Jenkins Job Builder.</p>
-
-    project-type: freestyle
-
-    wrappers:
-      - ansicolor
-      - timeout:
-          timeout: 10
-          fail: true
-          type: no-activity
-      - timestamps
-      - workspace-cleanup:
-          clean-if:
-            - failure: false
-
-    scm:
-      - git:
-          url: git://git-mirror.internal.efficios.com/kernel/rseq/linux-rseq.git
-          branches:
-            - origin/rseq/dev
-          basedir: src/linux-rseq
-          skip-tag: true
-          reference-repo: "$HOME/gitcache/linux-stable.git/"
-
-    triggers:
-      - pollscm:
-          cron: "@hourly"
-
-    properties:
-      - inject:
-          properties-content: |
-            PROJECT_NAME=linux-rseq
-      - build-discarder:
-          num-to-keep: 2
-
-
-- job-template:
-    name: linux-rseq_master_coverity
-    defaults: linux-rseq
-    node: 'amd64'
-
-    triggers:
-      - pollscm:
-          cron: "@daily"
-
-    wrappers:
-      - ansicolor
-      - timeout:
-          timeout: 10
-          fail: true
-          type: no-activity
-      - timestamps
-      - workspace-cleanup:
-          clean-if:
-            - failure: false
-      - credentials-binding:
-          - username-password-separated:
-              credential-id: linux-rseq_coverity_token
-              username: COVERITY_SCAN_PROJECT_NAME
-              password: COVERITY_SCAN_TOKEN
-
-    builders:
-      - shell:
-          !include-raw-escape: scripts/common/coverity.sh
-
-    publishers:
-      - workspace-cleanup
-      - archive:
-          artifacts: 'analysis-results.tgz,cov-int/**'
-          allow-empty: false
-
-
-## Project
-- project:
-    name: linux-rseq
-    email_to: 'ci-notification@lists.lttng.org, cc:mathieu.desnoyers@efficios.com'
-    jobs:
-      - 'linux-rseq_master_coverity'
-
index a224f388fc16980521756b440ac1cce56a270027..a44a962bf29c501a760c0f515b573535f600aa27 100755 (executable)
@@ -92,10 +92,6 @@ lttng-scope|ctf-java|libdelorean-java|jabberwocky)
     BUILD_TYPE="maven"
     MVN_BIN="$HOME/tools/hudson.tasks.Maven_MavenInstallation/default/bin/mvn"
     ;;
-linux-rseq)
-    CONF_OPTS=""
-    BUILD_TYPE="linux-rseq"
-    ;;
 *)
     echo "Generic project, no configure options."
     CONF_OPTS=""
@@ -175,11 +171,6 @@ autotools)
 
     cov-build --dir "$RESULTS_DIR" $COVERITY_SCAN_BUILD_OPTIONS make -j"$NPROC" V=1
     ;;
-linux-rseq)
-    make defconfig
-    make -j"$NPROC" prepare
-    cov-build --dir "$RESULTS_DIR" $COVERITY_SCAN_BUILD_OPTIONS make -j"$NPROC" kernel/rseq.o kernel/do_on_cpu/core.o kernel/do_on_cpu/interpreter.o kernel/do_on_cpu/validate.o V=1
-    ;;
 *)
     echo "Unsupported build type: $BUILD_TYPE"
     exit 1
index 5ef74c30787cc23d92d0bec0f0f8a21e3a44bc9f..e5652b19a75688316cff7516b1827ff78843a8ca 100755 (executable)
@@ -79,10 +79,6 @@ lttng-ust)
     BUILD_TYPE="autotools"
     export CLASSPATH="/usr/share/java/log4j-1.2.jar"
     ;;
-linux-rseq)
-    CONF_OPTS=""
-    BUILD_TYPE="linux-rseq"
-    ;;
 *)
     echo "Generic project, no configure options."
     CONF_OPTS=""
@@ -108,11 +104,6 @@ autotools)
 
     scan-build -k -o "${SCAN_BUILD_TMPDIR}" make -j"$NPROC" V=1
     ;;
-linux-rseq)
-    make defconfig
-    make -j"$NPROC" prepare
-    scan-build -k -o "${SCAN_BUILD_TMPDIR}" make -j"$NPROC" kernel/rseq.o kernel/do_on_cpu/core.o kernel/do_on_cpu/interpreter.o kernel/do_on_cpu/validate.o V=1
-    ;;
 *)
     echo "Unsupported build type: $BUILD_TYPE"
     exit 1
This page took 0.025872 seconds and 4 git commands to generate.