From 62f67892ad9b6a75fa79c81c47cfc49c514261c9 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 31 Oct 2023 18:07:27 +0100 Subject: [PATCH] ci: add macos build+test workflow (#3) --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a3ab46..9d36a09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,3 +29,18 @@ jobs: - name: test run: | make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test + + macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: build + run: | + make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y + - name: stats + run: | + make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y qjs + ./qjs -qd + - name: test + run: | + make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y test