.github/workflows/build.yml: explicitly select ubuntu-20.04
According to https://github.com/actions/virtual-environments "ubuntu-latest" maps to "ubuntu-20.04", even though "ubuntu-22.04" is also available. Since our job description is very specific to "ubuntu-20.04", let's select this explicitly.
This commit is contained in:
parent
ae4f4d3533
commit
d29e1544bf
|
@ -28,7 +28,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04
|
||||
env:
|
||||
CC: 'ccache gcc-10'
|
||||
CXX: 'ccache g++-10'
|
||||
|
|
Loading…
Reference in New Issue