Skip to content
Snippets Groups Projects
Verified Commit 33ce0536 authored by Patrycja Rosa's avatar Patrycja Rosa :cat:
Browse files

abuild: set GIT_CEILING_DIRECTORIES before running prepare/build/check/package

parent 4dbf8e37
No related branches found
No related tags found
1 merge request!141abuild: set GIT_CEILING_DIRECTORIES before running build and package
Pipeline #126326 passed
...@@ -674,6 +674,8 @@ runpart() { ...@@ -674,6 +674,8 @@ runpart() {
if [ -d "$builddir" ]; then if [ -d "$builddir" ]; then
case "$part" in case "$part" in
prepare|build|package|check) prepare|build|package|check)
# exclude aports from git repo discovery
export GIT_CEILING_DIRECTORIES="$startdir"
cd "$builddir";; cd "$builddir";;
esac esac
fi fi
......
...@@ -21,7 +21,8 @@ init_tests \ ...@@ -21,7 +21,8 @@ init_tests \
abuild_invalid_pkgnames \ abuild_invalid_pkgnames \
abuild_invalid_subpkgnames \ abuild_invalid_subpkgnames \
abuild_invalid_subpkg_version \ abuild_invalid_subpkg_version \
abuild_multiline_license abuild_multiline_license \
abuild_git_ceiling
export ABUILD_SHAREDIR=$(atf_get_srcdir)/.. export ABUILD_SHAREDIR=$(atf_get_srcdir)/..
export ABUILD_CONF=/dev/null export ABUILD_CONF=/dev/null
...@@ -412,3 +413,33 @@ abuild_multiline_license_body() { ...@@ -412,3 +413,33 @@ abuild_multiline_license_body() {
atf_check -o match:'^license = MIT AND GPL-3.0-only OR GPL-3.0-or-later AND BSD-Clause-4$' \ atf_check -o match:'^license = MIT AND GPL-3.0-only OR GPL-3.0-or-later AND BSD-Clause-4$' \
cat pkg/.control.test-licenses/.PKGINFO cat pkg/.control.test-licenses/.PKGINFO
} }
abuild_git_ceiling_body() {
init_keys
git init
mkdir git-pkg
cd git-pkg
cat >APKBUILD<<-EOF
# Maintainer: Joe User <juser@example.com>
pkgname="git-pkg"
pkgver="1.0"
pkgrel=0
pkgdesc="Dummy test package"
url="https://gitlab.alpinelinux.org/alpine/aports"
arch="noarch"
license="MIT"
prepare() {
mkdir -p "\$builddir"
}
build() {
git status
}
package() {
mkdir -p "\$pkgdir"
}
EOF
atf_check -s exit:1 \
-e match:"not a git repository" \
-e match:"ERROR: git-pkg: build failed" \
abuild
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment