temporary workaround for arch libc version requiring upgraded host (#4258)
see https://bugs.archlinux.org/task/69563#comment196582
This commit is contained in:
parent
7e3a669af0
commit
18e27ef932
1 changed files with 9 additions and 8 deletions
17
.github/workflows/ci-builds.yml
vendored
17
.github/workflows/ci-builds.yml
vendored
|
@ -80,13 +80,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
distro: # these names correspond to the files in .ci/$distro
|
# these names correspond to the files in .ci/$distro
|
||||||
- UbuntuGroovy
|
|
||||||
- UbuntuFocal
|
|
||||||
- UbuntuBionic
|
|
||||||
- ArchLinux
|
|
||||||
- DebianBuster
|
|
||||||
- Fedora33
|
|
||||||
include:
|
include:
|
||||||
- distro: UbuntuGroovy
|
- distro: UbuntuGroovy
|
||||||
package: DEB
|
package: DEB
|
||||||
|
@ -142,7 +136,14 @@ jobs:
|
||||||
|
|
||||||
- name: Build ${{matrix.distro}} Docker image
|
- name: Build ${{matrix.distro}} Docker image
|
||||||
shell: bash
|
shell: bash
|
||||||
run: source .ci/docker.sh --build
|
run: |
|
||||||
|
# temporary workaround for arch libc version requiring upgraded host
|
||||||
|
# see https://bugs.archlinux.org/task/69563#comment196582
|
||||||
|
if [[ $NAME == ArchLinux ]]; then
|
||||||
|
wget http://ftp.us.debian.org/debian/pool/main/r/runc/runc_1.0.0~rc93+ds1-2_amd64.deb
|
||||||
|
sudo dpkg -i --force-conflicts runc*.deb
|
||||||
|
fi
|
||||||
|
source .ci/docker.sh --build
|
||||||
|
|
||||||
- name: Build debug and test
|
- name: Build debug and test
|
||||||
if: matrix.test != 'skip'
|
if: matrix.test != 'skip'
|
||||||
|
|
Loading…
Reference in a new issue