diff options
author | Pierre Ossman <ossman@cendio.se> | 2021-11-05 12:53:11 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2021-11-05 13:36:37 +0100 |
commit | cb3c78f43394930f890bfb6fb34834d8d1a58496 (patch) | |
tree | 4163f747f92bcc560f24ef0cbcf568c9389c625a /.github | |
parent | 011f7deac219989bee5be9fdb7756016d5896973 (diff) | |
download | tigervnc-cb3c78f43394930f890bfb6fb34834d8d1a58496.tar.gz tigervnc-cb3c78f43394930f890bfb6fb34834d8d1a58496.zip |
Raise CMake requirement to 3.10
It's difficult to support both old and new versions, so raise the
requirement to the oldest that is commonly used, which is CMake 3.10.2
on Ubuntu 18.04.
Diffstat (limited to '.github')
-rwxr-xr-x | .github/containers/centos7/build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/containers/centos7/build.sh b/.github/containers/centos7/build.sh index 55ad8107..ad55b20e 100755 --- a/.github/containers/centos7/build.sh +++ b/.github/containers/centos7/build.sh @@ -33,6 +33,7 @@ sed -i "s/@VERSION@/${VERSION}/" ${CURDIR}/rpmbuild/SPECS/tigervnc.spec docker run --volume ${CURDIR}/rpmbuild:/home/rpm/rpmbuild --interactive --rm tigervnc/${DOCKER} \ bash -c " + sudo yum install -y epel-release && sudo yum-builddep -y ~/rpmbuild/SPECS/tigervnc.spec && sudo chown 0.0 ~/rpmbuild/SOURCES/* && sudo chown 0.0 ~/rpmbuild/SPECS/* && |