Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.5 migrated jenkins to semaphore #1341

Merged
merged 4 commits into from
Jun 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
removed -a from compile-validate tee
  • Loading branch information
Muen342 committed Jun 27, 2024
commit 65c0e9d42de31c3453c9e6c2bc3048c54374f65a
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ include ./mk-include/cc-end.mk
#Runs the compile and checkstyle error check
.PHONY: compile-validate
compile-validate:
./retry_zinc ./gradlew clean publishToMavenLocal build -x test --no-daemon --stacktrace -PxmlSpotBugsReport=true 2>&1 | tee -a build.log
./retry_zinc ./gradlew clean publishToMavenLocal build -x test --no-daemon --stacktrace -PxmlSpotBugsReport=true 2>&1 | tee build.log
@error_count=$$(grep -c -E "(ERROR|error:|\[Error\]|FAILED)" build.log); \
if [ $$error_count -ne 0 ]; then \
echo "Compile, checkstyle or spotbugs error found"; \
Expand Down