From ea5b9342d91ac6de9ced25fa37b0a20e9f365442 Mon Sep 17 00:00:00 2001 From: Ciro Date: Thu, 24 Nov 2022 10:38:41 -0300 Subject: [PATCH] add cmake test --- .github/workflows/macos_arm64_libuv-cmake.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/macos_arm64_libuv-cmake.yml 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