Skip to content

Commit f7bd674

Browse files
committed
ci: skip cfl and oss-fuzz with LAPI tests
Lua is not supported by OSS-Fuzz [1]. 1. google/oss-fuzz#13782
1 parent 4198abb commit f7bd674

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/cflite_pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
paths-ignore:
1313
- 'cmake/BuildLua.cmake'
1414
- 'README.md'
15+
# Lua is not supported by OSS Fuzz,
16+
# https://github.com/google/oss-fuzz/issues/13782.
17+
- 'tests/lapi/**'
1518

1619
concurrency:
1720
# Update of a developer branch cancels the previously scheduled workflow

.github/workflows/oss-fuzz.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ on:
66
- 'master'
77
paths:
88
- '.github/workflows/**'
9-
- 'tests/**'
9+
# Lua is not supported by OSS Fuzz,
10+
# https://github.com/google/oss-fuzz/issues/13782.
11+
- 'tests/capi/**'
1012
- 'cmake/**'
1113
- 'CMakeLists.txt'
1214
pull_request:

0 commit comments

Comments
 (0)