Skip to content

Try to use a more recent version of cmake #163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 25 additions & 9 deletions .github/workflows/skyr-url-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: skyr-url CI
on: [ push, pull_request ]

env:
CMAKE_VERSION: 3.17.3
CMAKE_VERSION: 3.18.6
NINJA_VERSION: 1.11.0

jobs:
Expand Down Expand Up @@ -61,6 +61,22 @@ jobs:
cxx_standard: 20,
}

# # GCC-12
# - {
# name: "Linux GCC 12 Debug (C++20)", artifact: "Linux.tar.xz",
# os: ubuntu-latest,
# build_type: Debug,
# cc: "gcc-12", cxx: "g++-12",
# cxx_standard: 20,
# }
# - {
# name: "Linux GCC 12 Release (C++20)", artifact: "Linux.tar.xz",
# os: ubuntu-latest,
# build_type: RelWithDebInfo,
# cc: "gcc-12", cxx: "g++-12",
# cxx_standard: 20,
# }

# Clang-10
- {
name: "Linux Clang 10 Debug (C++20)", artifact: "Linux.tar.xz",
Expand Down Expand Up @@ -278,14 +294,14 @@ jobs:
sudo apt-get update
sudo apt-get -y install g++-11

- name: Install GCC 12
id: install_gcc_12
if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-12' )
shell: bash
working-directory: ${{ env.HOME }}
run: |
sudo apt-get update
sudo apt-get -y install g++-12
# - name: Install GCC 12
# id: install_gcc_12
# if: startsWith(matrix.config.os, 'ubuntu') && ( matrix.config.cxx == 'g++-12' )
# shell: bash
# working-directory: ${{ env.HOME }}
# run: |
# sudo apt-get update
# sudo apt-get -y install g++-12

- name: Install Clang 8
id: install_clang_8
Expand Down