Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pmaports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
postmarketOS
pmaports
Merge requests
!5734
extra-repos/systemd/plasma*: upgrade to 6.2.2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
extra-repos/systemd/plasma*: upgrade to 6.2.2
upgrade-plasma-systemd
into
master_staging_systemd
Overview
7
Commits
3
Pipelines
31
Changes
1
Merged
Bart Ribbers
requested to merge
upgrade-plasma-systemd
into
master_staging_systemd
5 months ago
Overview
7
Commits
3
Pipelines
31
Changes
1
Expand
0
0
Merge request reports
Viewing commit
03fab9ad
Show latest version
1 file
+
8
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Verified
03fab9ad
DO NOT MERGE: ci: init context earlier to see if it affects pmb
· 03fab9ad
Clayton Craft
authored
5 months ago
.ci/lib/build_changed_aports.py
+
8
−
6
Options
@@ -56,23 +56,25 @@ if __name__ == "__main__":
sys
.
exit
(
1
)
arch
=
sys
.
argv
[
1
]
# Get and print modified packages
common
.
add_upstream_git_remote
()
packages
=
common
.
get_changed_packages
()
# Package count sanity check
common
.
get_changed_packages_sanity_check
(
len
(
packages
))
# Load context
sys
.
argv
=
[
"
pmbootstrap.py
"
,
"
chroot
"
]
args
=
pmb
.
parse
.
arguments
()
context
=
get_context
()
# Get and print modified packages
common
.
add_upstream_git_remote
()
packages
=
common
.
get_changed_packages
()
# This can find the changed APKBUILDs in the branch...
# Package count sanity check
common
.
get_changed_packages_sanity_check
(
len
(
packages
))
# [ci:skip-build]: verify checksums and stop
verify_only
=
common
.
commit_message_has_string
(
"
[ci:skip-build]
"
)
if
verify_only
:
print
(
"
WARNING: not building changed packages ([ci:skip-build])!
"
)
print
(
"
verifying checksums:
"
+
"
,
"
.
join
(
packages
))
# And this cannot find the APKBUILDs in the branch...
verify_checksums
(
packages
,
arch
)
sys
.
exit
(
0
)
Loading