From 529c0e0ae62bf5100352a1469ec4d793ebb8be11 Mon Sep 17 00:00:00 2001 From: Avinal Kumar Date: Thu, 21 Oct 2021 14:30:50 +0530 Subject: [PATCH] Migrate macOS CI to GitHub Actions Signed-off-by: Avinal Kumar --- .github/workflows/build_mac.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build_mac.yml diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml new file mode 100644 index 000000000..3c4e4841f --- /dev/null +++ b/.github/workflows/build_mac.yml @@ -0,0 +1,23 @@ +name: macOS Build + +on: + push: + branches: + - master + pull_request: + + +jobs: + xcode: + runs-on: macos-11 + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: brew install mingw-w64 + + - name: Build + run: make -j8 + + \ No newline at end of file