summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorPierre GRANDIN <pgrandin@users.noreply.github.com>2019-06-06 08:48:45 -0600
committerGitHub <noreply@github.com>2019-06-06 08:48:45 -0600
commit4b732b5b0adedbd27f5d01d6002a5a5cb1f89ec7 (patch)
tree73ac398bf4f4ffafc2b3858a93409629055aa32c /.circleci
parent1ec53465053670d04e65065a5fa1eeea53e5d952 (diff)
downloadnavit-4b732b5b0adedbd27f5d01d6002a5a5cb1f89ec7.tar.gz
Readthedocs import (#784)
* First rftd.io import * Testing Markdown doc * Testing Markdown doc * Testing RST * Datetime is required * Testing RST * Adding a basic configuration page from the wiki * Testing RST * Testing syntax highlighting * Testing syntax highlighting * Testing syntax highlighting * Importing https://wiki.navit-project.org/index.php/Maps * Importing https://wiki.navit-project.org/index.php/Maps * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/Binfile * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Importing https://wiki.navit-project.org/index.php/OpenStreetMap * Fixing links * Fixing links * Fixing links * Fixing links * Fixing links * Minor improvments * Minor improvments * Minor fixes * Importing detailed configuration * Improving the index page * Removing copyright, it makes CodeFactor unhappy * Added misspell checks * Fixed wrong copy pasta * Install curl, required to install misspell * Fixed some typos * Removed a bunch of trailing spaces * Removed a bunch of trailing spaces * Probably don't need "please" here. * Reworking content * Apply suggestions from code review Remove unneeded white spaces before colon * Apply suggestions from code review Setting song for software or file names like the other occurences * Update docs/binfile.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/advanced.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/advanced.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Removed wiki comment * Update docs/configuration/display.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/display.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/general.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/general.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/general.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/layout.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/vehicle.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/index.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Update docs/configuration/display.rst Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com> * Apply suggestions from code review Co-Authored-By: Joseph Herlant <aerostitch@users.noreply.github.com>
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 57e2f4c68..823ca54d0 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -227,6 +227,29 @@ jobs:
- run:
name: Update results to Github
command: export GIT_TERMINAL_PROMPT=0 && git push origin $CIRCLE_SHA1:refs/heads/master
+ check_spelling:
+ <<: *defaults
+ steps:
+ - checkout
+ - run:
+ name: Install curl
+ command: apt-get update && apt-get -y install curl
+ - run:
+ name: Install misspell
+ command: |
+ curl -L -o ./install-misspell.sh https://git.io/misspell
+ sh ./install-misspell.sh -b /usr/local/bin/
+ - run:
+ name: Check docs folder for misspells
+ command: |
+ misspell docs/ > typos.txt
+ if [[ $( wc -l < typos.txt ) -gt 0 ]]; then
+ echo "Typos/mispells found, please fix them";
+ cat typos.txt
+ exit -1
+ fi
+
+
workflows:
version: 2
build_all:
@@ -275,3 +298,7 @@ workflows:
filters:
branches:
only: /^trunk$/
+ - check_spelling:
+ filters:
+ branches:
+ only: /^readthedocs$/