Fixed the bug that Vector type in SPMD does not work as expected
This commit is contained in:
@@ -57,9 +57,17 @@ jobs:
|
||||
else
|
||||
echo "🆕 Version $VERSION of $PACKAGE_ID is new."
|
||||
|
||||
# 4. PACK (Packages the DLLs created above)
|
||||
# 4. EXPLICIT BUILD (Creates the DLLs)
|
||||
echo "Building $projfile..."
|
||||
if ! dotnet build "$projfile" -c Release; then
|
||||
echo "❌ Failed to build $projfile"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 5. PACK (Packages the DLLs created above)
|
||||
echo "Packing $projfile..."
|
||||
if ! dotnet pack "$projfile" -c Release -o ./artifacts; then
|
||||
# We use --no-build because we just built it in step 4
|
||||
if ! dotnet pack "$projfile" -c Release -o ./artifacts --no-build; then
|
||||
echo "❌ Failed to pack $projfile"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user