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:
authorMax Danielsson <max@autious.net>2022-04-27 22:37:01 +0300
committerGitHub <noreply@github.com>2022-04-27 22:37:01 +0300
commit85129c3ac7ac5e723efb084675505ac38ce64072 (patch)
tree8fa935c945d6b53bc0e7041342542e3ad043f366
parent633c9a17847780ac63874cd0fdfe4f2792c581e2 (diff)
parent2be2c3520df03a28232275df1a374724522bec1e (diff)
Merge pull request #31 from feliwir/windows-ci
Add windows CI
-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 717ee006..7fa3d75c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -36,3 +36,15 @@ jobs:
run: cmake -S ./Projects -B ./Build
- name: compile with cmake
run: cmake --build ./Build --verbose -j4
+
+ windows:
+ runs-on: windows-latest
+
+ 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