From f24d9f0c5d6377dd30e614e98d53cbaf543030ff Mon Sep 17 00:00:00 2001 From: Bailey Pearson Date: Mon, 2 Dec 2024 12:05:59 -0700 Subject: [PATCH] correct label --- .github/workflows/build.yml | 8 -------- etc/make-macos-x64-build.sh | 7 ------- 2 files changed, 15 deletions(-) delete mode 100644 etc/make-macos-x64-build.sh diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 99dcdae..7e74385 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,14 +30,6 @@ 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 - - id: upload name: Upload prebuild uses: actions/upload-artifact@v4 diff --git a/etc/make-macos-x64-build.sh b/etc/make-macos-x64-build.sh deleted file mode 100644 index a8479ef..0000000 --- a/etc/make-macos-x64-build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/bash - -package_version=$(cat package.json | jq -r '.version') -build_file=$(ls prebuilds/@mongodb-js) -x64_file=$(echo $build_file | sed -e s/arm64/x64/g) -echo $x64_file -cp prebuilds/@mongodb-js/$build_file prebuilds/@mongodb-js/$x64_file \ No newline at end of file