69 lines
2.4 KiB
Bash
Executable File
69 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# runtest.sh of /tools/go-rpm-macros/Sanity/gobuild-etcd
|
|
# Description: golang rpm macros usage building etcd
|
|
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# Copyright (c) 2021 Red Hat, Inc.
|
|
#
|
|
# 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 2 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/.
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
# Include Beaker environment
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
PACKAGE="go-rpm-macros"
|
|
|
|
GO_PACKAGE="$(rpm -qf $(which go))"
|
|
|
|
# Conserve the non-zero return value through the pipe
|
|
set -o pipefail
|
|
|
|
rlJournalStart
|
|
rlPhaseStartSetup
|
|
rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
|
|
rlRun "pushd $TmpDir"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest "check macros"
|
|
rlRun "gobuild_string=\"$(rpm -E '%gobuild')\"" 127
|
|
rlRun "gotest_string=\"$(rpm -E '%gotest')\"" 127
|
|
rlAssertNotEquals "Checking if %gobuild macro is defined" "$gobuild_string" "%gobuild"
|
|
rlAssertNotEquals "Checking if %gotest macro is defined" "$gotest_string" "%gotest"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStart FAIL "setup etcd sources"
|
|
rlRun "SRPM=\$(basename \$(yumdownloader --source --url etcd | tail -n 1))"
|
|
rlRun "yumdownloader --source etcd"
|
|
rlRun "yum-builddep --enablerepo=\* -y --srpm ${SRPM}"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest "rpmbuild etcd"
|
|
rlRun "rpmbuild --define='_topdir $TmpDir' --rebuild --nocheck ${SRPM} \
|
|
|& tee etcd.rpmbuild.log"
|
|
rlFileSubmit "etcd.rpmbuild.log"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartCleanup
|
|
rlRun "popd"
|
|
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
|
|
rlPhaseEnd
|
|
rlJournalPrintText
|
|
rlJournalEnd
|