Bug 1292696 - Remove version checks for libxcb and libgl; r?ahal draft
authorGregory Szorc <gps@mozilla.com>
Mon, 08 Aug 2016 14:42:06 -0700
changeset 398762 0a1e0b3fa9bb0b267a9cc25fd0c1a949c2e0c143
parent 398604 6cf0089510fad8deb866136f5b92bbced9498447
child 527739 1f6e2ad2e7e232cd6808cf80cfe881e8df7383bb
push id25620
push userbmo:gps@mozilla.com
push dateTue, 09 Aug 2016 17:42:35 +0000
reviewersahal
bugs1292696
milestone51.0a1
Bug 1292696 - Remove version checks for libxcb and libgl; r?ahal Pinning these packages breaks Ubuntu package management because other packages we install explicitly require a newer version. Attempting to pin these results in packages getting removed or refusal to install. MozReview-Commit-ID: AhQbjavCKI1
testing/docker/ubuntu1604-test/system-setup.sh
--- a/testing/docker/ubuntu1604-test/system-setup.sh
+++ b/testing/docker/ubuntu1604-test/system-setup.sh
@@ -157,26 +157,21 @@ apt-get update
 apt-get -q -y -f install ubuntu-restricted-extras
 
 apt-get -q -y -f install \
     libxcb1 \
     libxcb-render0 \
     libxcb-shm0 \
     libxcb-glx0 \
     libxcb-shape0
-libxcb1_version=$(dpkg-query -s libxcb1 | grep ^Version | awk '{ print $2 }')
-[ "$libxcb1_version" = "1.11.1-1ubuntu1" ] || exit 1
 
 apt-get -q -y -f install \
     libgl1-mesa-dri \
     libgl1-mesa-glx \
     mesa-common-dev
-mesa_version=$(dpkg-query -s libgl1-mesa-dri | grep ^Version | awk '{ print $2 }')
-echo $mesa_version
-[ "$mesa_version" = "11.2.0-1ubuntu2" ] || exit 1
 
 # revert the list of repos
 cp sources.list.orig /etc/apt/sources.list
 apt-get update
 
 # clean up
 cd /
 rm -rf /setup ~/.ccache ~/.cache ~/.npm