diff options
author | kpcyrd <git@rxv.cc> | 2017-11-21 23:03:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-11-21 23:07:37 +0000 |
commit | b56609001473b7589bb09364e16e7e8d15e1d406 (patch) | |
tree | a24416384b840e5c53a5e02ec85cf9f0d0f27e07 /bin | |
parent | 4d10050944d82b9fd5992dd3f2e23e04b1febbea (diff) | |
download | jenkins.debian.net-b56609001473b7589bb09364e16e7e8d15e1d406.tar.xz |
reproducible-archlinux: fix 2nd asp checkout
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build_archlinux_pkg.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_build_archlinux_pkg.sh b/bin/reproducible_build_archlinux_pkg.sh index 9de8260d..8624ca3d 100755 --- a/bin/reproducible_build_archlinux_pkg.sh +++ b/bin/reproducible_build_archlinux_pkg.sh @@ -131,7 +131,7 @@ first_build() { schroot --begin-session --session-name=$SESSION -c jenkins-reproducible-archlinux echo "MAKEFLAGS=-j$NUM_CPU" | schroot --run-session -c $SESSION --directory /tmp -u root -- tee -a /etc/makepkg.conf schroot --run-session -c $SESSION --directory /tmp -- mkdir $BUILDDIR - schroot --run-session -c $SESSION --directory "$BUILDDIR" -- asp checkout "$SRCPACKAGE" + schroot --run-session -c $SESSION --directory "$BUILDDIR" -- env GIT_SSL_NO_VERIFY=1 asp checkout "$SRCPACKAGE" # $SRCPACKAGE is actually the binary package ACTUAL_SRCPACKAGE=$(ls "$BUILDDIR") # just set timezone in the 1st build @@ -184,7 +184,7 @@ second_build() { schroot --begin-session --session-name=$SESSION -c jenkins-reproducible-archlinux echo "MAKEFLAGS=-j$NEW_NUM_CPU" | schroot --run-session -c $SESSION --directory /tmp -u root -- tee -a /etc/makepkg.conf schroot --run-session -c $SESSION --directory /tmp -- mkdir $BUILDDIR - schroot --run-session -c $SESSION --directory "$BUILDDIR" -- asp checkout "$SRCPACKAGE" + schroot --run-session -c $SESSION --directory "$BUILDDIR" -- env GIT_SSL_NO_VERIFY=1 asp checkout "$SRCPACKAGE" # $SRCPACKAGE is actually the binary package ACTUAL_SRCPACKAGE=$(ls "$BUILDDIR") # add more variations in the 2nd build: TZ, LANG, LC_ALL, umask |