Files
member_repo/shellscripts/01_container_build.sh
Karsten Jeppesen 252b681f30
All checks were successful
DMA-CSD-CICD/member_repo/pipeline/head This commit looks good
test
2025-08-26 13:47:38 +02:00

20 lines
561 B
Bash

#!/bin/bash
/bin/echo "$0 - Building all containers [$(pwd)]"
echo "USER: $UID"
echo "Will build:"
/bin/find ./ -type f -name "*.csproj" | while read line; do
solution=$(echo "$line" | cut -f 2 -d '/')
project=$(echo "$line" | cut -f 3 -d '/')
echo "[$solution]:[$project]"
done
/bin/find ./ -type f -name "*.csproj" | while read line; do
solution=$(echo "$line" | cut -f 2 -d '/')
project=$(echo "$line" | cut -f 3 -d '/')
echo "Building [$solution] [$project]"
shellscripts/DotDockerbuilder8.sh --solution $solution --project $project
done