From 6fb435a914ec2c458ade9a1523a9bdf10105d2aa Mon Sep 17 00:00:00 2001 From: Andreas Fahrecker Date: Wed, 7 Aug 2024 15:35:32 +0200 Subject: [PATCH] Test file structure --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9b23c25..873cd79 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,6 +17,8 @@ pipeline { withGradle { sh './gradlew :compileAdblockList' } + // List the contents of the out directory for debugging + sh 'ls -la out' // Verify the file exists sh 'test -f out/andysadguardhomeblocklist.txt' } @@ -36,6 +38,8 @@ pipeline { stages { stage('Build') { steps { + // List the contents of the out directory for debugging + sh 'ls -la out' // Verify the file exists sh 'test -f out/andysadguardhomeblocklist.txt' sh 'docker build -t gitea.fahrecker.com/andreas-personal/andysadguardhomeblocklist:dev-latest -t gitea.fahrecker.com/andreas-personal/andysadguardhomeblocklist:${tag} .'