Skip to content

Commit

Permalink
Revert gradle.yml smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
yadobler authored Sep 17, 2024
1 parent 424282d commit f04586e
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,6 @@ jobs:
- name: Build with Gradle Wrapper
run: ./gradlew clean build -x test -x checkstyleMain -x checkStyleTest

- name: Smoke Test Application
run: |
# Start the application in the background
./gradlew run &
APP_PID=$!
# Wait for a few seconds to simulate a smoke test duration
sleep 10
# Check if the application is running and kill it if no exceptions are thrown
if ps -p $APP_PID > /dev/null
then
echo "Smoke test passed, killing application."
kill $APP_PID
else
echo "Application failed to start."
exit 1
fi
# this tests to check if commit is compliant with checkstyle and jUnit tests
test:
strategy:
Expand Down

0 comments on commit f04586e

Please sign in to comment.