Skip to content

Commit 1775c29

Browse files
Revert "Merge pull request #6 from d99kris/github-actions-ci"
This reverts commit 07f7a7a, reversing changes made to bf2557a.
1 parent 800d70c commit 1775c29

6 files changed

Lines changed: 51 additions & 151 deletions

File tree

.github/workflows/linux.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/workflows/macos.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.travis.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
language:
2+
- cpp
3+
4+
sudo:
5+
- true
6+
7+
os:
8+
- linux
9+
- osx
10+
11+
dist:
12+
- bionic
13+
14+
osx_image:
15+
- xcode11
16+
17+
addons:
18+
apt:
19+
packages:
20+
- cmake
21+
- python3-pip
22+
- libpython3-dev
23+
brew:
24+
packages:
25+
- cmake
26+
- python
27+
28+
install:
29+
- which python
30+
- python --version
31+
- which python3
32+
- python3 --version
33+
- pip3 install -U spacy
34+
- pip3 install -U --upgrade cryptography
35+
- sudo python3 -m spacy download en_core_web_sm
36+
37+
script:
38+
- mkdir -p build
39+
- cd build
40+
- cmake ..
41+
- make -s
42+
- ctest --output-on-failure

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Spacy-cpp
22
=========
33

4-
| **Linux** | **Mac** |
5-
|-----------|---------|
6-
| [![Linux](https://github.com/d99kris/spacy-cpp/workflows/Linux/badge.svg)](https://github.com/d99kris/spacy-cpp/actions?query=workflow%3ALinux) | [![macOS](https://github.com/d99kris/spacy-cpp/workflows/macOS/badge.svg)](https://github.com/d99kris/spacy-cpp/actions?query=workflow%3AmacOS) |
4+
| **Linux + Mac** |
5+
|-----------------|
6+
| [![Build status](https://travis-ci.com/d99kris/spacy-cpp.svg?branch=master)](https://travis-ci.com/d99kris/spacy-cpp) |
77

88
Spacy-cpp is a C++ wrapper library for the excellent NLP library [spaCy](https://spacy.io/).
99
This project is not affiliated with spaCy, but it is distributed under the same license (MIT).

make.sh

Lines changed: 0 additions & 112 deletions
This file was deleted.

run.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
3+
# run tests
4+
mkdir -p build && cd build && cmake .. && make && ctest --output-on-failure
5+
6+
exit ${?}

0 commit comments

Comments
 (0)