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

github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2020-09-27 19:46:34 +0300
committerKenneth Heafield <github@kheafield.com>2020-09-27 19:47:25 +0300
commit0a014223187a62cb0ce479a8735432f244b80b29 (patch)
treea1dc84391d1397ff9c5bc85b70007bb6b8553d78 /.github/workflows/windows.yml
parent566fb84f20ce93655c58d31cf96a86a758888ccf (diff)
Windows continuous integration with cmake
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 0000000..65b0598
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,25 @@
+name: Windows
+
+on:
+ push:
+ branches: [win]
+ pull_request:
+ branches: [win]
+
+jobs:
+ build:
+ runs-on: windows-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: cmake
+ run: |
+ cmake -E make_directory build
+ cd build
+ cmake -DBOOST_ROOT="${env:BOOST_ROOT_1_72_0}" ..
+ - name: Compile
+ working-directory: build
+ run: cmake --build . -j2
+ - name: Test
+ working-directory: build
+ run: ctest -j2