Skip to content

Commit db6d89d

Browse files
authored
Merge pull request #1495 from joto/workaround-github-actions-bug
Workaround for bug in github actions environment
2 parents efb67a1 + ad3deb4 commit db6d89d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/actions/ubuntu-prerequisites/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ runs:
1111
sudo apt-get update -qq
1212
shell: bash
1313

14+
# Workaround for bug in Github Action environment https://github.com/actions/virtual-environments/issues/3376
15+
- name: Remove preinstalled GCC 11
16+
run: |
17+
sudo apt-get remove -yq libgcc-11-dev gcc-11 || true
18+
shell: bash
19+
1420
- name: Install software
1521
run: |
1622
sudo apt-get install -yq --no-install-suggests --no-install-recommends postgresql-${POSTGRESQL_VERSION}-postgis-${POSTGIS_VERSION} postgresql-${POSTGRESQL_VERSION}-postgis-${POSTGIS_VERSION}-scripts postgresql-client postgresql-contrib-${POSTGRESQL_VERSION} postgresql-${POSTGRESQL_VERSION} libpq-dev libboost-system-dev libboost-filesystem-dev libexpat1-dev zlib1g-dev libbz2-dev libproj-dev pandoc python3-psycopg2 libluajit-5.1-dev

0 commit comments

Comments
 (0)