Fix whitespace and trailing newline in github actions files.

This commit is contained in:
Ryan Pavlik 2021-06-24 09:47:49 -05:00 committed by ruevs
parent b5333608e9
commit c2f65cac12
4 changed files with 6 additions and 5 deletions

View File

@ -49,4 +49,4 @@ else
if [ $(uname -m) = "$2" ]; then
make -j$(sysctl -n hw.logicalcpu) test_solvespace
fi
fi
fi

View File

@ -72,12 +72,12 @@ do
echo "Checking progress..."
progress=$(xcrun altool --notarization-info "${notarize_uuid}" -u "${MACOS_APPSTORE_USERNAME}" -p "${MACOS_APPSTORE_APP_PASSWORD}" 2>&1)
# echo "${progress}"
if [ $? -ne 0 ] || [[ "${progress}" =~ "Invalid" ]] ; then
echo "Error with notarization. Exiting"
break
fi
if [[ "${progress}" =~ "success" ]]; then
success=1
break
@ -88,4 +88,4 @@ do
done
# staple
xcrun stapler staple "${dmg}"
xcrun stapler staple "${dmg}"

View File

@ -69,7 +69,7 @@ jobs:
with:
name: windows
path: build/bin/RelWithDebInfo/solvespace.exe
build_release_windows_openmp:
needs: [test_ubuntu, test_windows, test_macos]
name: Build Release Windows (OpenMP)

View File

@ -42,3 +42,4 @@ jobs:
run: .github/scripts/install-macos.sh ci
- name: Build & Test
run: .github/scripts/build-macos.sh debug arm64 && .github/scripts/build-macos.sh debug x86_64