Skip to content

Commit

Permalink
Merge pull request #4615 from ssbarnea/fix/prepare
Browse files Browse the repository at this point in the history
build: improved prepare.sh
  • Loading branch information
openshift-merge-robot authored Dec 3, 2019
2 parents 9e361fd + 3befbb1 commit b88f2c4
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .copr/prepare.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
#!/bin/sh -euf
set -x
set -euxo pipefail
OS_TEST=${OS_TEST:=0}

if [ ! -e /usr/bin/git ]; then
dnf -y install git-core
fi

git fetch --unshallow || :
if [ -f $(git rev-parse --git-dir)/shallow ]; then
git fetch --unshallow
fi

COMMIT=$(git rev-parse HEAD)
COMMIT_SHORT=$(git rev-parse --short=8 HEAD)
Expand All @@ -26,7 +28,12 @@ if [ ${OS_TEST} -eq 0 ]; then
sed -i "s/${BR}/${NEWBR}/g" contrib/spec/podman.spec
fi

mkdir build/
mkdir -p build/
git archive --prefix "libpod-${COMMIT_SHORT}/" --format "tar.gz" HEAD -o "build/libpod-${COMMIT_SHORT}.tar.gz"
git clone https://github.com/containers/conmon
cd conmon && git checkout 6f3572558b97bc60dd8f8c7f0807748e6ce2c440 && git archive --prefix "conmon/" --format "tar.gz" HEAD -o "../build/conmon.tar.gz"
if [ ! -d conmon ]; then
git clone -n --quiet https://github.com/containers/conmon
fi
pushd conmon
git checkout 6f3572558b97bc60dd8f8c7f0807748e6ce2c440
git archive --prefix "conmon/" --format "tar.gz" HEAD -o "../build/conmon.tar.gz"
popd

0 comments on commit b88f2c4

Please sign in to comment.