Skip to content

Commit

Permalink
Fix actions and cmake version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ergus committed Dec 31, 2024
1 parent e839984 commit bf1b6d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, cc: "gcc", cxx: "g++"}
- {os: ubuntu-latest, cc: "clang", cxx: "clang++"}
- {os: ubuntu-24.04, cc: "gcc", cxx: "g++"}
- {os: ubuntu-24.04, cc: "clang", cxx: "clang++"}
- {os: windows-latest, cc: "cl", cxx: "cl"}
#- {os: macos-latest, cc: "clang", cxx: "clang++"}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Prints
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
gcc -v
- name: Install TBB Linux
if: matrix.config.os == 'ubuntu-latest'
if: matrix.config.os == 'ubuntu-24.04'
run: sudo apt install libtbb-dev

# - name: Install TBB MacOS
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.10)

project(ExtraeWin LANGUAGES CXX)

Expand Down

0 comments on commit bf1b6d6

Please sign in to comment.