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-17 17:36:40 +0300
committerKenneth Heafield <github@kheafield.com>2020-09-17 17:36:40 +0300
commit689a25aae9171b3ea46bd80d4189f540f35f1a02 (patch)
treefed9b21fecb9313aa0f2cf85ec74ea2a03900138
parent3423361b4f768a0c87a4c61c0d16c48b025bc61d (diff)
Mac CI: remove unused cache, compile tests
-rw-r--r--.github/workflows/mac.yml8
1 files changed, 1 insertions, 7 deletions
diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml
index 9136048..a2ae42d 100644
--- a/.github/workflows/mac.yml
+++ b/.github/workflows/mac.yml
@@ -12,19 +12,13 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Cache Boost
- id: cache-boost
- uses: actions/cache@v1
- with:
- path: boost_1_74_0/installdir
- key: ${{ runner.os }}-boost_1_74_0
- name: Install Boost
run: brew install boost
- name: cmake
run: |
cmake -E make_directory build
cd build
- cmake ..
+ cmake -DCOMPILE_TESTS=ON ..
- name: Compile
working-directory: build
run: cmake --build . -j2