Skip to content

Commit b150588

Browse files
authored
Use explicit versions of Ubuntu images instead of latest (#484)
To test more versions of compilers
2 parents 58d9867 + 181e5fa commit b150588

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/cmake.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,24 @@ jobs:
2727
extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin",
2828
}
2929
- {
30-
name: "Ubuntu Latest GCC",
31-
os: ubuntu-latest,
30+
name: "Ubuntu 24.04 GCC",
31+
os: ubuntu-24.04,
32+
generator: "Unix Makefiles",
33+
build_type: "Debug",
34+
cc: "gcc", cxx: "g++",
35+
extra_path: "",
36+
}
37+
- {
38+
name: "Ubuntu 22.04 GCC",
39+
os: ubuntu-22.04,
40+
generator: "Unix Makefiles",
41+
build_type: "Debug",
42+
cc: "gcc", cxx: "g++",
43+
extra_path: "",
44+
}
45+
- {
46+
name: "Ubuntu 20.04 GCC",
47+
os: ubuntu-20.04,
3248
generator: "Unix Makefiles",
3349
build_type: "Debug",
3450
cc: "gcc", cxx: "g++",

0 commit comments

Comments
 (0)