This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://javadoc.jenkins-ci.org/hudson/model/Result.html | |
/* | |
ABORTED - The build was manually aborted. | |
FAILURE - The build had a fatal error. | |
NOT_BUILT - The module was not built. | |
SUCCESS - The build had no errors. | |
UNSTABLE - The build had some errors but they were not fatal. | |
*/ | |
pipeline { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
docker system prune --force | |
OUT=$? | |
WEBHOOK_URL="url webhook discord" | |
if [ $OUT = 0 ] | |
then | |
STATUS="Ok" |
OlderNewer