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 if [ $(uname -m) = "$2" ]; then
make -j$(sysctl -n hw.logicalcpu) test_solvespace make -j$(sysctl -n hw.logicalcpu) test_solvespace
fi fi
fi fi

View File

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

View File

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

View File

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