Skip to content

Commit

Permalink
Updated GitHub actions to use glibc 2.28 instead of glibc 2.17 for bu…
Browse files Browse the repository at this point in the history
…ilding the AppImages

   Distro    |  kernel | glibc
     ---     |   ---   |  ---
  CentOS 7   |   3.10  |  2.17
  CentOS 8   |   4.18  |  2.28
  Debian 9   |  4.9.30 |  2.24
  Debian 10  | 4.9.118 |  2.28
  Debian 11  | 5.10.84 |  2.31
   RHEL 7    |   3.10  |  2.17
   RHEL 8    |   4.18  |  2.28
Ubuntu 18.04 |   4.15  |  2.27
Ubuntu 20.04 |   5.4   |  2.31
  • Loading branch information
scopplestone committed May 18, 2024
1 parent b9041e2 commit a6a371a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cmake-ninja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,20 @@ jobs:
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: ubuntu-latest

# Use centos7
# Use centos8
container:
image: centos:7
image: centos:8
options: --privileged

steps:

- name: Install GIT
shell: bash
run: |
yum -y install https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm
cd /etc/yum.repos.d/
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
yum -y install https://packages.endpointdev.com/rhel/8/main/x86_64/endpoint-repo.noarch.rpm
yum -y install git
git --version
Expand Down

0 comments on commit a6a371a

Please sign in to comment.