diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6109dcd..f22f575 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: macos_and_windows: strategy: matrix: - os: [macos-latest, windows-2019] + os: [macos-latest, windows-2019, macOS] fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -30,13 +30,13 @@ jobs: run: npm install --loglevel verbose && npm run prebuild shell: bash - # macOS arm64 builds are universal macOS binaries. We copy the arm64 build - # into the location that prebuild expects for a x64 build so we can - # install on both architectures. - - name: copy universal macos binary to platform specific binaries - if: ${{ matrix.os == 'macos-latest' }} - shell: bash - run: bash etc/make-macos-x64-build.sh + # # macOS arm64 builds are universal macOS binaries. We copy the arm64 build + # # into the location that prebuild expects for a x64 build so we can + # # install on both architectures. + # - name: copy universal macos binary to platform specific binaries + # if: ${{ matrix.os == 'macos-latest' }} + # shell: bash + # run: bash etc/make-macos-x64-build.sh - id: upload name: Upload prebuild diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4644bb..56c7632 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: host_tests: strategy: matrix: - os: [macos-latest, windows-2019] + os: [macos-latest, windows-2019, macOS] node: [16.20.1, 18.x, 20.x, 22.x] fail-fast: false runs-on: ${{ matrix.os }}