disable glibc 2.33 workaround once github workflows are no longer broken

This commit is contained in:
Eli Schwartz 2021-03-07 17:14:48 -05:00
parent c20c140b52
commit e552724524
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
2 changed files with 2 additions and 14 deletions

View File

@ -40,14 +40,8 @@ jobs:
CI: 'true'
steps:
- name: Setup container
# WORKAROUND for glibc 2.33 and old Docker
# See https://github.com/actions/virtual-environments/issues/2658
# Thanks to https://github.com/lxqt/lxqt-panel/pull/1562
run: |
patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst
curl -LO "https://repo.archlinuxcn.org/x86_64/$patched_glibc"
bsdtar -C / -xf "$patched_glibc"
pacman -Syu --noconfirm --ignore glibc
pacman -Syu --noconfirm
pacman -S --noconfirm tar
- name: Checkout source code

View File

@ -15,14 +15,8 @@ jobs:
CI: 'true'
steps:
- name: Setup container
# WORKAROUND for glibc 2.33 and old Docker
# See https://github.com/actions/virtual-environments/issues/2658
# Thanks to https://github.com/lxqt/lxqt-panel/pull/1562
run: |
patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst
curl -LO "https://repo.archlinuxcn.org/x86_64/$patched_glibc"
bsdtar -C / -xf "$patched_glibc"
pacman -Syu --noconfirm --ignore glibc
pacman -Syu --noconfirm
pacman -S --noconfirm tar
- name: Checkout source code