From 855c1c6cc15fa70034db0d622ad7f1d01c767e4b Mon Sep 17 00:00:00 2001 From: Alexander Myltsev Date: Sat, 3 Feb 2024 15:09:53 +0400 Subject: [PATCH] CI for MacOS. --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ed11560..a3a7894 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,3 +21,12 @@ jobs: run: sudo apt-get install -y lld - name: LLVM build run: make LLVM=on image.bin + macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: install llvm + run: brew install llvm + - name: LLVM build + run: make LLVM=on image.bin +