Skip to content

Commit 5a50107

Browse files
authored
Add new project KDE-Thumbnailers (#13490)
KDE thumbnailers generate previews for various file formats across KDE Plasma and Apps (like Dolphin). Corresponding MR: https://invent.kde.org/network/kio-extras/-/merge_requests/441
1 parent 46b2d77 commit 5a50107

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright 2025 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
#
15+
################################################################################
16+
17+
18+
FROM gcr.io/oss-fuzz-base/base-builder
19+
20+
RUN git clone --depth 1 https://invent.kde.org/network/kio-extras.git
21+
RUN git clone --depth 1 https://invent.kde.org/graphics/kdegraphics-thumbnailers.git
22+
RUN git clone --depth 1 https://invent.kde.org/sdk/kdesdk-thumbnailers.git
23+
RUN git clone --depth 1 https://invent.kde.org/multimedia/ffmpegthumbs.git
24+
25+
RUN $SRC/kio-extras/thumbnail/autotests/ossfuzz/prepare_build.sh
26+
RUN $SRC/kdegraphics-thumbnailers/autotests/ossfuzz/prepare_build.sh
27+
RUN $SRC/kdesdk-thumbnailers/autotests/ossfuzz/prepare_build.sh
28+
RUN $SRC/ffmpegthumbs/autotests/ossfuzz/prepare_build.sh
29+
30+
COPY build.sh $SRC
31+
32+
WORKDIR $SRC

projects/kde-thumbnailers/build.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash -eu
2+
#
3+
# Copyright 2025 Google LLC
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
################################################################################
18+
19+
$SRC/kio-extras/thumbnail/autotests/ossfuzz/build_fuzzers.sh
20+
$SRC/kdegraphics-thumbnailers/autotests/ossfuzz/build_fuzzers.sh
21+
$SRC/kdesdk-thumbnailers/autotests/ossfuzz/build_fuzzers.sh
22+
$SRC/ffmpegthumbs/autotests/ossfuzz/build_fuzzers.sh
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
homepage: "https://invent.kde.org/network/kio-extras.git"
2+
language: c++
3+
primary_contact: [email protected]
4+
sanitizers:
5+
- address
6+
- undefined
7+
main_repo: "https://invent.kde.org/network/kio-extras.git"

0 commit comments

Comments
 (0)