diff options
author | Ondrej Holy <oholy@redhat.com> | 2020-09-07 09:27:35 +0200 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2020-09-07 09:59:59 +0200 |
commit | 831203e9512b29900e8095c91332b49bbbf97047 (patch) | |
tree | 9bc31f03175ebfcfa8271e23fcc4f4b13c1479e7 /.gitlab-ci.yml | |
parent | a9d2562676abf6181ed114a31f00add0f00119c4 (diff) | |
download | nautilus-831203e9512b29900e8095c91332b49bbbf97047.tar.gz |
ci: Hardcode image version for style check job
The style check job currently fails as uncrustify from rawhide obviously
changed its behavior. It tries to change function pointer the following
way:
- gboolean (*each_function)(NautilusCanvasIcon *, gpointer),
+ gboolean ( *each_function )(NautilusCanvasIcon *, gpointer),
I don't think this is right, but don't know how to fix that ellegantly.
Note that this is because of "sp_before_ptr_star = false". Let's
hardcode the previous image varsion to avoid this change for now.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 24a397f64..5575159af 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,7 +72,7 @@ triage:dry-run: when: manual style check: - image: registry.gitlab.gnome.org/gnome/nautilus:latest + image: registry.gitlab.gnome.org/gnome/nautilus:v642646 stage: test artifacts: name: 'Style check artifacts' |