Skip to content

Commit 166752c

Browse files
committed
workflow: macOS Latest Intel not support in free plan
1 parent 2ede7be commit 166752c

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.github/workflows/cmake.yml

+14-8
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
- {
3636
name: "Ubuntu Latest GCC", artifact: "Linux.7z",
3737
os: ubuntu-latest,
38-
cc: "gcc-13", cxx: "g++-13"
38+
cc: "gcc-12", cxx: "g++-12"
39+
# cc: "gcc-13", cxx: "g++-13"
3940
# cc: "gcc-14", cxx: "g++-14"
4041

4142
# https://github.com/actions/runner-images/blob/macos-14-arm64/20240827.4/images/ubuntu/Ubuntu2404-Readme.md
@@ -48,13 +49,14 @@ jobs:
4849
# https://github.com/actions/runner-images/blob/macos-14-arm64/20240827.4/images/macos/macos-14-arm64-Readme.md
4950
# https://github.com/actions/runner-images/releases/tag/macos-14-arm64%2F20240827.4
5051
}
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+
# }
5860

5961

6062
steps:
@@ -64,6 +66,10 @@ jobs:
6466
#if: matrix.os == 'ubuntu-latest'
6567
if: runner.os == 'Linux' # Linux, Windows, macOS
6668
run: |
69+
which gcc && gcc --version
70+
which cmake && cmake --version
71+
echo
72+
echo
6773
# if [[ "$OSTYPE" == "linux-gnu"* ]]; then
6874
if [[ "$(gcc --version|head -1)" != *10.* ]]; then
6975
sudo add-apt-repository ppa:ubuntu-toolchain-r/test

0 commit comments

Comments
 (0)