Skip to content

Commit 913d068

Browse files
committed
remove ubuntu 22
1 parent 99c47e1 commit 913d068

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: "CodeQL"
22
on: [push, pull_request]
33

44
jobs:
5-
analyze:
6-
name: Analyze
5+
Analyze:
76
runs-on: ubuntu-24.04
87
permissions:
98
actions: read

.github/workflows/tests.yml

Lines changed: 11 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -74,43 +74,30 @@ jobs:
7474
strategy:
7575
fail-fast: false
7676
matrix:
77-
os-version: [22, 24]
77+
os-version: [24]
7878
cpu-arch: ["", "-arm"]
7979
build-config: [debug, release]
8080
compiler:
81-
- {
82-
cc: gcc-12,
83-
cxx: g++-12,
84-
install: gcc-12 g++-12
85-
}
8681
- {
8782
cc: gcc-13,
8883
cxx: g++-13,
8984
install: gcc-13 g++-13
9085
}
9186
- {
92-
cc: clang-15,
93-
cxx: clang++-15,
94-
install: clang-15
87+
cc: gcc-14,
88+
cxx: g++-14,
89+
install: gcc-14 g++-14
90+
}
91+
- {
92+
cc: clang-16,
93+
cxx: clang++-16,
94+
install: clang-16
9595
}
9696
- {
9797
cc: clang-18,
9898
cxx: clang++-18,
9999
install: clang-18
100100
}
101-
exclude:
102-
- os-version: 24
103-
compiler:
104-
cc: gcc-12
105-
- os-version: 22
106-
compiler:
107-
cc: gcc-13
108-
- os-version: 24
109-
compiler:
110-
cc: clang-15
111-
- os-version: 22
112-
compiler:
113-
cc: clang-18
114101

115102
steps:
116103
- name: Install packages
@@ -214,8 +201,8 @@ jobs:
214201
CFLAGS: ${{ matrix.sanitizer.flags }}
215202
CXXFLAGS: ${{ matrix.sanitizer.flags }}
216203
LDFLAGS: ${{ matrix.sanitizer.flags }}
217-
CC: clang-16
218-
CXX: clang++-16
204+
CC: clang
205+
CXX: clang++
219206
strategy:
220207
fail-fast: false
221208
matrix:

0 commit comments

Comments
 (0)