-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request #6 from d99kris/github-actions-ci"
- Loading branch information
Kristofer Berggren
committed
Dec 8, 2020
1 parent
800d70c
commit 1775c29
Showing
6 changed files
with
51 additions
and
151 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
language: | ||
- cpp | ||
|
||
sudo: | ||
- true | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
dist: | ||
- bionic | ||
|
||
osx_image: | ||
- xcode11 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- cmake | ||
- python3-pip | ||
- libpython3-dev | ||
brew: | ||
packages: | ||
- cmake | ||
- python | ||
|
||
install: | ||
- which python | ||
- python --version | ||
- which python3 | ||
- python3 --version | ||
- pip3 install -U spacy | ||
- pip3 install -U --upgrade cryptography | ||
- sudo python3 -m spacy download en_core_web_sm | ||
|
||
script: | ||
- mkdir -p build | ||
- cd build | ||
- cmake .. | ||
- make -s | ||
- ctest --output-on-failure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
# run tests | ||
mkdir -p build && cd build && cmake .. && make && ctest --output-on-failure | ||
|
||
exit ${?} |