Files
PSU-Test-01/shellscripts/01_container_build.sh
PSU-CICD 91204da90c
Some checks failed
PSU-X25-CICD/PSU-Test-01/pipeline/head There was a failure building this commit
PSU-CICD/PSU-Test-01/pipeline/head This commit looks good
Initial commit
2026-03-01 09:45:41 +00:00

20 lines
562 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/DotDockerbuilder10.sh --solution $solution --project $project
done