Skip to content

Commit

Permalink
Revert "Merge pull request #6 from d99kris/github-actions-ci"
Browse files Browse the repository at this point in the history
This reverts commit 07f7a7a, reversing
changes made to bf2557a.
  • Loading branch information
Kristofer Berggren committed Dec 8, 2020
1 parent 800d70c commit 1775c29
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 151 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/linux.yml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/macos.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .travis.yml
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Spacy-cpp
=========

| **Linux** | **Mac** |
|-----------|---------|
| [![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) |
| **Linux + Mac** |
|-----------------|
| [![Build status](https://travis-ci.com/d99kris/spacy-cpp.svg?branch=master)](https://travis-ci.com/d99kris/spacy-cpp) |

Spacy-cpp is a C++ wrapper library for the excellent NLP library [spaCy](https://spacy.io/).
This project is not affiliated with spaCy, but it is distributed under the same license (MIT).
Expand Down
112 changes: 0 additions & 112 deletions make.sh

This file was deleted.

6 changes: 6 additions & 0 deletions run.sh
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 ${?}

0 comments on commit 1775c29

Please sign in to comment.