Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Vedder <stephan.vedder@gmail.com>2022-05-03 01:03:46 +0300
committerStephan Vedder <vedder@mbits.info>2022-05-03 10:46:42 +0300
commit396125db3524dc6b0462b5bfed433a53870b241d (patch)
tree3f36e5e3303da08b1eda422d020add5a327bcf9d
parent0cdd7158bad853dd5eaff6aa59a3ea8b8fab1978 (diff)
Add macos runner
-rw-r--r--.github/workflows/build.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 00f7700a..29ab5b1f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -49,3 +49,15 @@ jobs:
run: cmake -S ./Projects -B ./Build
- name: compile with cmake
run: cmake --build ./Build
+
+ macos:
+ runs-on: macos-11
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0 # Shallow clones speed things up
+ - name: cmake configure
+ run: cmake -S ./Projects -B ./Build
+ - name: compile with cmake
+ run: cmake --build ./Build