Set CC && CXX env vars for workflow
This commit is contained in:
parent
7444784281
commit
0a8b48c1a6
1 changed files with 3 additions and 0 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -3,6 +3,9 @@ on: [push]
|
|||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CC: gcc-9
|
||||
CXX: g++-9
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: sudo apt-get install -y cmake
|
||||
|
|
Reference in a new issue