Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
maknop committed Sep 22, 2023
1 parent 8da0320 commit 9e4ba60
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontends/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ pipeline {
docker buildx ls
echo ""
# Extract builder names from the output, skipping the first line (header)
builders=$(docker buildx ls | awk 'NR>1 {print $1}')
# Loop over each builder's name
for builder in $(docker buildx ls -q); do
# Check if the builder is not the default one
if [[ $builder != *"(default)"* ]]; then
# Print out detailed information about this specific builder
echo "Inspecting builder: $builder"
docker buildx inspect "$builder"
echo ""
fi
for builder in $builders; do
# Print out detailed information about this specific builder
echo "Inspecting builder: $builder"
docker buildx inspect "$builder"
echo ""
done
'''

Expand Down

0 comments on commit 9e4ba60

Please sign in to comment.