diff --git a/.github/workflows/macos_arm64_libuv-cmake.yml b/.github/workflows/macos_arm64_libuv-cmake.yml new file mode 100644 index 0000000..667195e --- /dev/null +++ b/.github/workflows/macos_arm64_libuv-cmake.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: | + brew install autoconf automake libtool cmake + git clone --branch v1.44.2 --recursive https://github.com/libuv/libuv.git + cd libuv + cmake . -DCMAKE_SYSTEM_NAME=Darwin DCMAKE_C_COMPILER=i686-w64-mingw32-gcc + cmake --build . + ls * \ No newline at end of file