force ubuntu-18.04 for github actions

building on ubuntu 20.04 was causing issue with a too recent glibc for
some users dependent on ubuntu 18.04 or similar (elementary OS)
The issue arise as github action ubuntu-latest was upgraded recently too
ubuntu 20.04.
This fix forces the app to be built on ubuntu 18.04

Relates #1471
pull/1495/head
Audric Ackermann 4 years ago
parent 49ca1a0f82
commit ad1d54ad5e
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2016, macos-latest, ubuntu-latest]
os: [windows-2016, macos-latest, ubuntu-18.04]
env:
SIGNAL_ENV: production
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2016, macos-latest, ubuntu-latest]
os: [windows-2016, macos-latest, ubuntu-18.04]
env:
SIGNAL_ENV: production
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-2016, macos-latest, ubuntu-latest]
os: [windows-2016, macos-latest, ubuntu-18.04]
env:
SIGNAL_ENV: production
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Loading…
Cancel
Save