35
35
- {
36
36
name : " Ubuntu Latest GCC" , artifact: "Linux.7z",
37
37
os : ubuntu-latest,
38
- cc : " gcc-13" , cxx: "g++-13"
38
+ cc : " gcc-12" , cxx: "g++-12"
39
+ # cc: "gcc-13", cxx: "g++-13"
39
40
# cc: "gcc-14", cxx: "g++-14"
40
41
41
42
# https://github.com/actions/runner-images/blob/macos-14-arm64/20240827.4/images/ubuntu/Ubuntu2404-Readme.md
@@ -48,13 +49,14 @@ jobs:
48
49
# https://github.com/actions/runner-images/blob/macos-14-arm64/20240827.4/images/macos/macos-14-arm64-Readme.md
49
50
# https://github.com/actions/runner-images/releases/tag/macos-14-arm64%2F20240827.4
50
51
}
51
- - {
52
- name : " macOS Latest Intel" , artifact: "macOS-intel.7z",
53
- os : macos-latest-large,
54
- cc : " clang" , cxx: "clang++"
55
-
56
- # https://github.com/actions/runner-images
57
- }
52
+ # macOS Latest Intel not support in free plan
53
+ # - {
54
+ # name: "macOS Latest Intel", artifact: "macOS-intel.7z",
55
+ # os: macos-latest-large,
56
+ # cc: "clang", cxx: "clang++"
57
+ #
58
+ # # https://github.com/actions/runner-images
59
+ # }
58
60
59
61
60
62
steps :
64
66
# if: matrix.os == 'ubuntu-latest'
65
67
if : runner.os == 'Linux' # Linux, Windows, macOS
66
68
run : |
69
+ which gcc && gcc --version
70
+ which cmake && cmake --version
71
+ echo
72
+ echo
67
73
# if [[ "$OSTYPE" == "linux-gnu"* ]]; then
68
74
if [[ "$(gcc --version|head -1)" != *10.* ]]; then
69
75
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
0 commit comments