mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
ci: Build GNOME Shell at the test stage
Hopefully this will allow us prevent merging branches that accidentally break GNOME Shell. https://gitlab.gnome.org/GNOME/mutter/merge_requests/548
This commit is contained in:
parent
ae6d9e35bd
commit
3468144847
@ -44,3 +44,18 @@ test-mutter:
|
|||||||
only:
|
only:
|
||||||
- merge_requests
|
- merge_requests
|
||||||
- /^.*$/
|
- /^.*$/
|
||||||
|
|
||||||
|
can-build-gnome-shell:
|
||||||
|
image: registry.gitlab.gnome.org/gnome/gnome-shell/master:v1
|
||||||
|
stage: test
|
||||||
|
dependencies:
|
||||||
|
- build-mutter
|
||||||
|
before_script:
|
||||||
|
- meson install --no-rebuild -C build
|
||||||
|
script:
|
||||||
|
- .gitlab-ci/checkout-gnome-shell.sh
|
||||||
|
- meson gnome-shell gnome-shell/build
|
||||||
|
- ninja -C gnome-shell/build install
|
||||||
|
only:
|
||||||
|
- merge_requests
|
||||||
|
- /^.*$/
|
||||||
|
35
.gitlab-ci/checkout-gnome-shell.sh
Executable file
35
.gitlab-ci/checkout-gnome-shell.sh
Executable file
@ -0,0 +1,35 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
mutter_branch=$(git describe --contains --all HEAD)
|
||||||
|
gnome_shell_target=
|
||||||
|
|
||||||
|
git clone https://gitlab.gnome.org/GNOME/gnome-shell.git
|
||||||
|
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo Checkout failed
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd gnome-shell
|
||||||
|
|
||||||
|
if [ "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]; then
|
||||||
|
merge_request_remote=${CI_MERGE_REQUEST_SOURCE_PROJECT_URL//mutter/gnome-shell}
|
||||||
|
merge_request_branch=$CI_MERGE_REQUEST_SOURCE_BRANCH_NAME
|
||||||
|
|
||||||
|
echo Looking for $merge_request_branch on remote ...
|
||||||
|
if git fetch -q $merge_request_remote $merge_request_branch 2>/dev/null; then
|
||||||
|
gnome_shell_target=FETCH_HEAD
|
||||||
|
else
|
||||||
|
gnome_shell_target=origin/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|
||||||
|
echo Using $gnome_shell_target instead
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$gnome_shell_target" ]; then
|
||||||
|
gnome_shell_target=$(git branch -r -l origin/$mutter_branch)
|
||||||
|
gnome_shell_target=${gnome_shell_target:-$(git branch -r -l ${mutter_branch#remotes/})}
|
||||||
|
gnome_shell_target=${gnome_shell_target:-origin/master}
|
||||||
|
echo Using $gnome_shell_target instead
|
||||||
|
fi
|
||||||
|
|
||||||
|
git checkout -q $gnome_shell_target
|
Loading…
Reference in New Issue
Block a user