Skip to content

Commit d8247b4

Browse files
committed
Disable failure for ARM64 macOS test attempts in order to accomodate self-hosted runners
1 parent 0367996 commit d8247b4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

action.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,11 @@ runs:
231231
shell: bash
232232
working-directory: ${{ inputs.package-path }}
233233
run: |
234-
if [ ${RUNNER_ARCH} == 'ARM64' ] && [ ${RUNNER_OS} == 'macOS' ]; then
235-
echo "::error::Cannot run tests on ARM64 macOS due to HVF error: HV_UNSUPPORTED. See https://github.com/ReactiveCircus/android-emulator-runner/issues/350#issuecomment-2030065889"
236-
exit 1
237-
fi
234+
# disabled because a self-hosted runner might not be using nested virtualization…
235+
#if [ ${RUNNER_ARCH} == 'ARM64' ] && [ ${RUNNER_OS} == 'macOS' ]; then
236+
# echo "::error::Cannot run tests on ARM64 macOS due to HVF error: HV_UNSUPPORTED. See https://github.com/ReactiveCircus/android-emulator-runner/issues/350#issuecomment-2030065889"
237+
# exit 1
238+
#fi
238239
239240
#inputs.android-emulator-test-folder = /data/local/tmp/android-xctest
240241
REMOTE_FOLDER=$(dirname "${{ inputs.android-emulator-test-folder }}")

0 commit comments

Comments
 (0)