This is an automated email from the ASF dual-hosted git repository.
zhangzhe pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fesod.git
The following commit(s) were added to refs/heads/main by this push:
new 43996cc5 chore(fuzz-tests): update Maven command to package for fuzz
tests (#787)
43996cc5 is described below
commit 43996cc5317f5b37a3db3f631fa9b224100ff6de
Author: ian zhang <[email protected]>
AuthorDate: Fri Jan 9 19:40:35 2026 +0800
chore(fuzz-tests): update Maven command to package for fuzz tests (#787)
Modified the Maven command in the fuzz-tests.yml to use the
'package' goal instead of 'test', ensuring that the build process
includes packaging the application along with running the tests.
This change aligns with the new structure and improves the
fuzz testing workflow.
---
.github/workflows/fuzz-tests.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/fuzz-tests.yml b/.github/workflows/fuzz-tests.yml
index 13446798..d073c540 100644
--- a/.github/workflows/fuzz-tests.yml
+++ b/.github/workflows/fuzz-tests.yml
@@ -50,7 +50,7 @@ jobs:
run: |
mkdir -p "${{ runner.temp }}/jazzer-artifacts/"
# Execute only tests under fuzz package and force tests not to be
skipped
- mvn -B -pl fesod-sheet -am -D"maven.test.skip=false"
-DtrimStackTrace=false -D"test=org.apache.fesod.sheet.fuzz.*Test"
-D"surefire.failIfNoSpecifiedTests=false" test
+ mvn -B -pl fesod-sheet -am -D"maven.test.skip=false"
-DtrimStackTrace=false -D"test=org.apache.fesod.sheet.fuzz.*Test"
-D"surefire.failIfNoSpecifiedTests=false" package
- name: Upload Jazzer artifacts (crashes, repros)
if: always()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]