diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4416095..04fd677 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,10 +1,5 @@ name: Tests -on: - push: - branches: - - main - pull_request: - types: [opened, synchronize, reopened] +on: push jobs: create-install-dir-test: @@ -331,7 +326,7 @@ jobs: name: Test action outputs strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] cache: [true, false] runs-on: ${{ matrix.os }} steps: diff --git a/scripts/configure_paths.sh b/scripts/configure_paths.sh index 9e06ddb..8a8ed2b 100755 --- a/scripts/configure_paths.sh +++ b/scripts/configure_paths.sh @@ -1,6 +1,6 @@ #!/bin/bash -if [[ ${ARCH} != "X64" && ! ( ${OS} == "macOS" && ${ARCH} == "ARM64" ) ]]; then +if [[ ${ARCH} != "X64" ]]; then echo "::error::Architecture '${ARCH}' is unsupported by build-wrapper" exit 1 fi