From b4c748a89f35f8f9823e470d7892b8b5414d0e10 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Wed, 15 Dec 2021 10:43:25 -0500 Subject: [PATCH] jjb: remove unused linux-rseq jobs Signed-off-by: Michael Jeanson Change-Id: I21566306a04a17c2a54201061e18a349c90f0aaf --- jobs/librseq.yaml | 2 +- jobs/linux-rseq.yaml | 83 ------------------------------------ scripts/common/coverity.sh | 9 ---- scripts/common/scan-build.sh | 9 ---- 4 files changed, 1 insertion(+), 102 deletions(-) delete mode 100644 jobs/linux-rseq.yaml diff --git a/jobs/librseq.yaml b/jobs/librseq.yaml index e82a0ca..b0b1f3f 100644 --- a/jobs/librseq.yaml +++ b/jobs/librseq.yaml @@ -261,7 +261,7 @@ 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 index 966fa0e..0000000 --- a/jobs/linux-rseq.yaml +++ /dev/null @@ -1,83 +0,0 @@ -- defaults: - name: linux-rseq - description: | - -

Job is managed by Jenkins Job Builder.

- - 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' - diff --git a/scripts/common/coverity.sh b/scripts/common/coverity.sh index a224f38..a44a962 100755 --- a/scripts/common/coverity.sh +++ b/scripts/common/coverity.sh @@ -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 diff --git a/scripts/common/scan-build.sh b/scripts/common/scan-build.sh index 5ef74c3..e5652b1 100755 --- a/scripts/common/scan-build.sh +++ b/scripts/common/scan-build.sh @@ -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 -- 2.34.1