Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI 2025-02-13 12:49:53 +00:00
parent 4ddd9c9b82
commit 29a3d78bbe
No known key found for this signature in database

8
Jenkinsfile vendored
View File

@ -64,7 +64,9 @@ pipeline {
fi
done
fi
docker system prune -f --volumes || : '''
docker system prune -f --volumes || :
docker image prune -af || :
'''
script{
env.EXIT_STATUS = ''
env.LS_RELEASE = sh(
@ -680,7 +682,8 @@ pipeline {
if [[ -n "${containers}" ]]; then
docker stop ${containers}
fi
docker system prune -af --volumes || :
docker system prune -f --volumes || :
docker image prune -af || :
'''
}
}
@ -1105,6 +1108,7 @@ EOF
done
fi
docker system prune -f --volumes || :
docker image prune -af || :
'''
cleanWs()
}