Skip to content

Commit 60cb171

Browse files
committed
Set minimal Ubuntu version to 22.04 for github flow
20.04 deprecated and will be removed 2025.05.15. Be ready, that 20.04 building can be brokken. I will open for 20.04 builds fixes, but it will not be automatically checked anymore. Disable ubuntu-latest for now: 22.04 and lates are same.
1 parent b691a3a commit 60cb171

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/cmake-ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ jobs:
1717
build:
1818
strategy:
1919
matrix:
20-
os: [ubuntu-latest, macos-latest]
20+
#os: [ubuntu-latest, macos-latest]
21+
os: [macos-latest]
2122
build_type: [Release, Debug]
2223
skip_meson: [false]
2324
include:
24-
- os: ubuntu-20.04
25+
- os: ubuntu-22.04
2526
build_type: Release
2627
skip_meson: true
27-
- os: ubuntu-20.04
28+
- os: ubuntu-22.04
2829
build_type: Debug
2930
skip_meson: true
3031

src/frame.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,6 @@ void avcpp_null_deleter(void* /*opaque*/, uint8_t */*data*/)
9090
namespace av
9191
{
9292

93-
VideoFrame::VideoFrame()
94-
{
95-
96-
}
97-
9893
VideoFrame::VideoFrame(PixelFormat pixelFormat, int width, int height, int align)
9994
{
10095
m_raw->format = pixelFormat;

0 commit comments

Comments
 (0)