Skip to content

Commit

Permalink
ci: don't use CentOS Alpha anymore
Browse files Browse the repository at this point in the history
It's no longer being built and is now older than the latest CentOS AH
release. This should help us no longer see messages like:

(rpm-ostree pkg-add:5662): GLib-CRITICAL **: g_variant_dict_lookup:
assertion 'is_valid_dict (dict)' failed

which happen because in coreos#1034, we started using `G_VARIANT_DICT_INIT`,
whose special magic values only make sense in glib2 >= 2.50. (The alpha
image stopped at 2.46).

Saw this while debugging coreos#1035.

Closes: coreos#1040
Approved by: cgwalters
  • Loading branch information
jlebon authored and rh-atomic-bot committed Oct 6, 2017
1 parent 33cb342 commit 235f294
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .papr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ required: true
cluster:
hosts:
- name: vmcheck1
distro: centos/7/atomic/alpha
distro: centos/7/atomic
- name: vmcheck2
distro: centos/7/atomic/alpha
distro: centos/7/atomic
- name: vmcheck3
distro: centos/7/atomic/alpha
distro: centos/7/atomic
container:
# FIXME remove this version binding when rpm-md repos are updated
image: registry.centos.org/centos/centos:7.3.1611
Expand Down
6 changes: 5 additions & 1 deletion ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ fi
adduser testuser

export LSAN_OPTIONS=verbosity=1:log_threads=1
build --enable-installed-tests --enable-gtk-doc
BWRAP=/usr/bin/bwrap
if [ "$id" == centos ]; then
BWRAP=/usr/lib64/rpm-ostree/bwrap
fi
build --enable-installed-tests --enable-gtk-doc --with-bubblewrap=$BWRAP

0 comments on commit 235f294

Please sign in to comment.