Skip to content

Commit ecdb4eb

Browse files
authored
Try to use a more recent version of cmake (#163)
* Try the latest version of CMake for Github actions: 3.24.0 * Try another version of CMake for Github actions: 3.18.0 * Try another version of CMake for Github actions: 3.19 * Try another version of CMake for Github actions: 3.19 * Revert "Try another version of CMake for Github actions: 3.19" This reverts commit d505382. * Revert "Try another version of CMake for Github actions: 3.19" This reverts commit 4abd471. * Added GCC 12 support in Gitlab Actions * Don't try GCC 12 yet
1 parent 28111d4 commit ecdb4eb

File tree

1 file changed

+25
-9
lines changed

1 file changed

+25
-9
lines changed

.github/workflows/skyr-url-ci.yml

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: skyr-url CI
44
on: [ push, pull_request ]
55

66
env:
7-
CMAKE_VERSION: 3.17.3
7+
CMAKE_VERSION: 3.18.6
88
NINJA_VERSION: 1.11.0
99

1010
jobs:
@@ -61,6 +61,22 @@ jobs:
6161
cxx_standard: 20,
6262
}
6363

64+
# # GCC-12
65+
# - {
66+
# name: "Linux GCC 12 Debug (C++20)", artifact: "Linux.tar.xz",
67+
# os: ubuntu-latest,
68+
# build_type: Debug,
69+
# cc: "gcc-12", cxx: "g++-12",
70+
# cxx_standard: 20,
71+
# }
72+
# - {
73+
# name: "Linux GCC 12 Release (C++20)", artifact: "Linux.tar.xz",
74+
# os: ubuntu-latest,
75+
# build_type: RelWithDebInfo,
76+
# cc: "gcc-12", cxx: "g++-12",
77+
# cxx_standard: 20,
78+
# }
79+
6480
# Clang-10
6581
- {
6682
name: "Linux Clang 10 Debug (C++20)", artifact: "Linux.tar.xz",
@@ -278,14 +294,14 @@ jobs:
278294
sudo apt-get update
279295
sudo apt-get -y install g++-11
280296
281-
- name: Install GCC 12
282-
id: install_gcc_12
283-
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-12' )
284-
shell: bash
285-
working-directory: ${{ env.HOME }}
286-
run: |
287-
sudo apt-get update
288-
sudo apt-get -y install g++-12
297+
# - name: Install GCC 12
298+
# id: install_gcc_12
299+
# if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-12' )
300+
# shell: bash
301+
# working-directory: ${{ env.HOME }}
302+
# run: |
303+
# sudo apt-get update
304+
# sudo apt-get -y install g++-12
289305

290306
- name: Install Clang 8
291307
id: install_clang_8

0 commit comments

Comments
 (0)