Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
abuild
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
abuild
Commits
33ce0536
Verified
Commit
33ce0536
authored
3 years ago
by
Patrycja Rosa
Browse files
Options
Downloads
Patches
Plain Diff
abuild: set GIT_CEILING_DIRECTORIES before running prepare/build/check/package
parent
4dbf8e37
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!141
abuild: set GIT_CEILING_DIRECTORIES before running build and package
Pipeline
#126326
passed
2 years ago
Stage: verify
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
abuild.in
+2
-0
2 additions, 0 deletions
abuild.in
tests/abuild_test
+32
-1
32 additions, 1 deletion
tests/abuild_test
with
34 additions
and
1 deletion
abuild.in
+
2
−
0
View file @
33ce0536
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
tests/abuild_test
+
32
−
1
View file @
33ce0536
...
@@ -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
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment