Bot Updating Templated Files

pull/182/head
LinuxServer-CI 2025-02-11 23:29:43 +00:00
rodzic ad3fd4af79
commit f063e307f4
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 6 dodań i 2 usunięć

8
Jenkinsfile vendored
Wyświetl plik

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