Skip to content

Commit c52de31

Browse files
committed
faster build
1 parent 19ad3fb commit c52de31

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-18.04
11+
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2
1414

@@ -18,11 +18,14 @@ jobs:
1818
./extra/tests.sh
1919
2020
- name: Install packages
21+
# The Github's Ubuntu images since 20211122.1 are broken
22+
# https://github.com/actions/virtual-environments/issues/4589
2123
run: |
2224
set -xeu -o pipefail
2325
sudo dpkg --add-architecture i386
2426
sudo apt -qq update
25-
sudo apt-get install -o=Dpkg::Use-Pty=0 -y crudini dos2unix gcc p7zip wine-stable wine32
27+
sudo apt install -y --allow-downgrades libpcre2-8-0=10.34-7
28+
sudo apt-get install -o=Dpkg::Use-Pty=0 -y crudini dos2unix gcc p7zip wine-stable wine32 >/dev/null
2629
wineboot
2730
2831
- name: Build and package

0 commit comments

Comments
 (0)