- file-id: '{settings-file}'
variable: 'SETTINGS_FILE'
+- builder:
+ name: lf-provide-sigul-configuration
+ # Push configuration files to interact with sigul
+ builders:
+ - config-file-provider:
+ files:
+ - file-id: sigul-config
+ variable: SIGUL_CONFIG
+ - file-id: sigul-password
+ variable: SIGUL_PASSWORD
+ - file-id: sigul-pki
+ variable: SIGUL_PKI
+ - shell: !include-raw-escape: ../shell/sigul-configuration.sh
+
- builder:
name: lf-pip-install
builders:
# DO NOT fail build if any of the above lines fail.
exit 0
+- builder:
+ name: lf-provide-sigul-configuration-cleanup
+ # Clear sigul configuration files after we're done using them
+ builders:
+ - shell: !include-raw-escape: ../shell/sigul-configuration-cleanup.sh
+
- builder:
name: lf-rtd-trigger-build
builders:
- ../shell/tox-install.sh
- ../shell/rtd-verify.sh
+- builder:
+ name: lf-sigul-install
+ # Requires that Jenkins be configured with SIGUL_BRIDGE_IP as a global
+ # Environment variable
+ builder:
+ - shell: !include-raw-escape: ../shell/sigul-install.sh
+
##############
# PARAMETERS #
##############
name: MVN
# Sets an env var for shell scripts to be able to call the dynamically
# installed maven without having to calculate the path themselves.
+ # yamllint disable-line rule:line-length
default: '/w/tools/hudson.tasks.Maven_MavenInstallation/{mvn-version}/bin/mvn'
description: 'Maven selector to be used by shell scripts'
- string:
exec-pattern: "**/**.exec"
class-pattern: "**/classes"
source-pattern: "**/src/main/java"
+ # yamllint disable-line rule:line-length
exclusion-pattern: "**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**"
status-update: true
targets:
--- /dev/null
+#!/bin/bash
+# SPDX-License-Identifier: EPL-1.0
+##############################################################################
+# Copyright (c) 2017 The Linux Foundation and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+##############################################################################
+echo "---> sigul-configuration-cleanup.sh"
+
+# Do NOT cause build failure if any of the rm calls fail
+set +e
+
+rm "${SIGUL_CONFIG}" "${SIGUL_PASSWORD}" "${SIGUL_PKI}"
+# Sigul pki configuration is designed to live in ${HOME}/sigul
+rm -rf "${HOME}/sigul*"
+
+# DO NOT fail build if any of the above lines fail.
+exit 0
--- /dev/null
+#!/bin/bash
+# SPDX-License-Identifier: EPL-1.0
+##############################################################################
+# Copyright (c) 2017 The Linux Foundation and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+##############################################################################
+echo "---> sigul-configuration.sh"
+
+# Ensure we fail the job if any steps fail.
+set -eu -o pipefail
+
+# Sigul pki configuration is designed to live in ${HOME}/sigul
+cd "${HOME}"
+
+# decrypt the sigul-pki tarball and extract it
+gpg --batch --passphrase-file "${SIGUL_PASSWORD}" -o sigul.tar.xz \
+ -d "${SIGUL_PKI}"
+tar Jxf sigul.tar.xz
+
+# Any future use of $SIGUL_PASSWORD needs to have it null terminated
+sed -i 's/$/\x0/' "${SIGUL_PASSWORD}"
+
--- /dev/null
+#!/bin/bash
+# SPDX-License-Identifier: EPL-1.0
+##############################################################################
+# Copyright (c) 2017 The Linux Foundation and others.
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+##############################################################################
+echo "---> sigul-install.sh"
+
+# Ensure we fail the job if any steps fail.
+set -eu -o pipefail
+
+# Setup sigul RPM repo
+echo "[fedora-infra-sigul]
+name=Fedora builder packages for sigul
+baseurl=https://infrastructure.fedoraproject.org/repo/infra/epel\$releasever-infra/\$basearch/
+enabled=1
+gpgcheck=1
+gpgkey=https://infrastructure.fedoraproject.org/repo/infra/RPM-GPG-KEY-INFRA-TAGS
+includepkgs=sigul*
+skip_if_unavailable=True" > fedora-infra-sigul.repo
+
+sudo cp fedora-infra-sigul.repo /etc/yum.repos.d
+rm fedora-infra-sigul.repo
+
+# install sigul
+sudo yum install -y -q sigul
+
+# configure /etc/hosts with the sigul bridge hostname
+# This is needed as build minions can't always get DNS resolution
+# on the bridge
+BRIDGE_HOST=$(grep bridge-hostname "$SIGUL_CONFIG" | awk '{print $2}')
+
+# SIGUL_BRIDGE_IP must be defined as a Jenkins env variable
+cp /etc/hosts hosts
+echo -e "$SIGUL_BRIDGE_IP\t$BRIDGE_HOST" >> hosts
+sudo cp hosts /etc/hosts
+rm hosts