Skip to content

Commit a32d25c

Browse files
committed
For the test step, use the GHA macos-14 (arm64)
1 parent 6b28918 commit a32d25c

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

.github/workflows/app_build.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -708,19 +708,19 @@ jobs:
708708
# fail-fast: Default is true, switch to false to allow one platform to fail and still run others
709709
fail-fast: false
710710
matrix:
711-
os: [macos-13] # , macos-arm64]
711+
os: [macos-13, macos-14]
712712
include:
713713
- os: macos-13
714714
SELF_HOSTED: false
715715
BINARY_EXT: dmg
716716
COMPRESSED_EXT: tar.gz
717717
arch: x86_64
718-
#- os: macos-arm64
719-
# SELF_HOSTED: true
720-
# BINARY_EXT: dmg
721-
# COMPRESSED_EXT: tar.gz
722-
# arch: arm64
723-
718+
# This is the GHA hosted one
719+
- os: macos-14
720+
SELF_HOSTED: false
721+
BINARY_EXT: dmg
722+
COMPRESSED_EXT: tar.gz
723+
arch: arm64
724724

725725
steps:
726726
- uses: actions/checkout@v4 # Still need code checked out to get testing scripts
@@ -760,11 +760,7 @@ jobs:
760760
echo "::endgroup::"
761761
762762
begin_group "Installing"
763-
if [ "${{ matrix.SELF_HOSTED }}" == "true" ]; then
764-
printf "${{ secrets.MACOS_SELF_HOSTED_PASSWORD }}\n" | sudo -S ./temp_mount/$filename.app/Contents/MacOS/$filename --accept-licenses --default-answer --confirm-command --root $(pwd)/test_install install
765-
else
766-
sudo ./temp_mount/$filename.app/Contents/MacOS/$filename --accept-licenses --default-answer --confirm-command --root $(pwd)/test_install install
767-
fi
763+
sudo ./temp_mount/$filename.app/Contents/MacOS/$filename --accept-licenses --default-answer --confirm-command --root $(pwd)/test_install install
768764
hdiutil detach ./temp_mount/
769765
echo "::endgroup::"
770766

0 commit comments

Comments
 (0)