diff options
-rwxr-xr-x | jenkins-scripts/basic_settings.sh | 9 | ||||
-rw-r--r-- | jjb/common/include-agl-run-test-short.sh | 6 |
2 files changed, 9 insertions, 6 deletions
diff --git a/jenkins-scripts/basic_settings.sh b/jenkins-scripts/basic_settings.sh index 5e193398..daa3b938 100755 --- a/jenkins-scripts/basic_settings.sh +++ b/jenkins-scripts/basic_settings.sh @@ -24,10 +24,10 @@ FQDN=$(facter fqdn) echo "${IPADDR} ${HOSTNAME} ${FQDN}" >> /etc/hosts -cat <<EOFHOSTS >> /etc/hosts +#cat <<EOFHOSTS >> /etc/hosts # workaround for download -199.19.213.77 download.automotivelinux.org -EOFHOSTS +#199.19.213.77 download.automotivelinux.org +#EOFHOSTS #Increase limits @@ -58,7 +58,8 @@ Host github.com EOSSH cat <<EOKNOWN > /etc/ssh/ssh_known_hosts -[gerrit.automotivelinux.org]:29418,[198.145.29.87]:29418 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQC7mx+OxVdwr6s5M/JJn5DxxVu9n7dfIZrB+mS88m51oJmHCWDBGEncpUskrzAwI5uXYTeG4FamcxtrHumVL3oZ6F4m93DG486/LM/4ff8qbEjYNoYYqY004wW2kbg1ivZ/DWmIyAyw0JCOv+Ia39krT5Zv6LI68skimCE/6pRbsw== +[gerrit.automotivelinux.org]:29418 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHZbT/wR4DF81iFvddGgWS5XtbcdLjQUPIxR4kHXMo5FzR0DNbU6nUafPD06bX9Ej5cpPWt8TjgXIEc8ux4CKL4= +[gerritssh.automotivelinux.org]:29418,[34.210.40.98]:29418 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHZbT/wR4DF81iFvddGgWS5XtbcdLjQUPIxR4kHXMo5FzR0DNbU6nUafPD06bX9Ej5cpPWt8TjgXIEc8ux4CKL4= vex-yul-agl-download.ci,10.30.72.8 ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNaxEOWbShvqQWqS17c123Ct8tBLBVVOPTNYpZSmwd1UKVQi9cF0QMOU7Rc479bHwzuLscvmohpGh2kP0CmHvAo= EOKNOWN diff --git a/jjb/common/include-agl-run-test-short.sh b/jjb/common/include-agl-run-test-short.sh index c397f126..6fb72ac8 100644 --- a/jjb/common/include-agl-run-test-short.sh +++ b/jjb/common/include-agl-run-test-short.sh @@ -9,8 +9,10 @@ set -x cd $REPODIR #cat build-info -cat tmp/deploy/images/${TARGETMACHINE}/build-info -source tmp/deploy/images/${TARGETMACHINE}/build-info +if [ -e tmp/deploy/images/${TARGETMACHINE}/build-info ]; then + cat tmp/deploy/images/${TARGETMACHINE}/build-info + source tmp/deploy/images/${TARGETMACHINE}/build-info +fi echo "# LAVA lab target: ${LAVA_LAB} #" # releng-scripts depends on jinja2 >= 2.9 |