From f2b4b6cb5a0e51091944e1c4ee4c5d5c7cd8fd0f Mon Sep 17 00:00:00 2001 From: Ciro Date: Thu, 24 Nov 2022 08:47:30 -0300 Subject: [PATCH] test with libuv crosscompilation --- .github/workflows/macos_arm64_libuv.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/macos_arm64_libuv.yml diff --git a/.github/workflows/macos_arm64_libuv.yml b/.github/workflows/macos_arm64_libuv.yml new file mode 100644 index 0000000..16a32d4 --- /dev/null +++ b/.github/workflows/macos_arm64_libuv.yml @@ -0,0 +1,15 @@ +name: Apple Silicon + libuv Build +on: workflow_dispatch +jobs: + build-macos: + runs-on: macos-11.0 + name: Build on darwin-arm64 + steps: + - name: Update binaries + run: | + git clone --branch v1.44.2 --recursive https://github.com/libuv/libuv.git + cd libuv + sh autogen.sh + ./configure --build=x86_64-apple-darwin --host=arm64-apple-macos11 + make + git status \ No newline at end of file