File: ci-build-centos8

package info (click to toggle)
btrfs-progs 6.2-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 17,244 kB
  • sloc: ansic: 114,376; sh: 9,576; python: 1,242; makefile: 820
file content (31 lines) | stat: -rwxr-xr-x 819 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
# Usage: $0 [branch]
# Create source tarball from HEAD or given branch and build it in Centos 8 CI
# environment

HERE=`pwd`
if [ -f "configure.ac" ]; then
	SOURCEDIR=`pwd`
elif [ -f "../configure.ac" ]; then
	cd ..
	SOURCEDIR=`pwd`
else
	echo "ERROR: cannot determine source directory from `pwd`"
	exit 1
fi

CIIMAGEDIR=ci/images/ci-centos-8-x86_64
BRANCH=${1:-HEAD}
HASH=$(git log -1 --format='%h %s' "$BRANCH")

echo "CI: Generate archive from $BRANCH ($HASH)"
git archive --prefix=btrfs-progs-devel/ -o devel.tar "$BRANCH"
echo "$BRANCH $HASH" > GITCOMMIT
tar uvf devel.tar GITCOMMIT
#rm GITCOMMIT
gzip --force --best devel.tar

cd "$CIIMAGEDIR"
cp "$SOURCEDIR/devel.tar.gz" .
./docker-build
./docker-run -- ./test-build devel --disable-documentation --disable-backtrace --disable-libudev --disable-zoned