-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ligatures
- Loading branch information
Showing
37 changed files
with
7,536 additions
and
524 deletions.
There are no files selected for viewing
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,30 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
machine: | ||
image: circleci/classic:201808-01 | ||
working_directory: ~/project | ||
steps: | ||
- checkout | ||
- run: | ||
name: Setup nvim ppa | ||
command: sudo add-apt-repository --yes ppa:neovim-ppa/unstable | ||
- run: | ||
name: APT update | ||
command: sudo apt-get update | ||
- run: | ||
name: Install dependencies | ||
command: sudo apt-get install -y neovim python-pip python-dev cmake qt5-default | ||
- run: | ||
name: build | ||
command: | | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_GCOV=ON .. | ||
cmake --build . -- VERBOSE=1 | ||
- run: | ||
name: test | ||
command: | | ||
cd build | ||
ctest -VV | ||
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
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
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
Oops, something went wrong.