Skip to content

Commit

Permalink
Use explicit versions of Ubuntu images instead of latest (#484)
Browse files Browse the repository at this point in the history
To test more versions of compilers
  • Loading branch information
SRombauts authored Aug 18, 2024
2 parents 58d9867 + 181e5fa commit b150588
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,24 @@ jobs:
extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin",
}
- {
name: "Ubuntu Latest GCC",
os: ubuntu-latest,
name: "Ubuntu 24.04 GCC",
os: ubuntu-24.04,
generator: "Unix Makefiles",
build_type: "Debug",
cc: "gcc", cxx: "g++",
extra_path: "",
}
- {
name: "Ubuntu 22.04 GCC",
os: ubuntu-22.04,
generator: "Unix Makefiles",
build_type: "Debug",
cc: "gcc", cxx: "g++",
extra_path: "",
}
- {
name: "Ubuntu 20.04 GCC",
os: ubuntu-20.04,
generator: "Unix Makefiles",
build_type: "Debug",
cc: "gcc", cxx: "g++",
Expand Down

0 comments on commit b150588

Please sign in to comment.