Skip to content

Commit 43996cc

Browse files
authored
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.
1 parent 17947ca commit 43996cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/fuzz-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
mkdir -p "${{ runner.temp }}/jazzer-artifacts/"
5252
# Execute only tests under fuzz package and force tests not to be skipped
53-
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
53+
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
5454
5555
- name: Upload Jazzer artifacts (crashes, repros)
5656
if: always()

0 commit comments

Comments
 (0)