diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-24 17:51:44 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-24 17:51:44 +0300 |
commit | 90c7b5ea58c7d1fea83236cd05b0680dc1c52cac (patch) | |
tree | 27a1a20bded658abf30690107d626145d8104460 /docs/markdown/Continuous-Integration.md | |
parent | 48e7398add38685590ca85526b4e5cd68cd72872 (diff) | |
download | meson-90c7b5ea58c7d1fea83236cd05b0680dc1c52cac.zip meson-90c7b5ea58c7d1fea83236cd05b0680dc1c52cac.tar.gz meson-90c7b5ea58c7d1fea83236cd05b0680dc1c52cac.tar.bz2 |
Rewrapped some markdown files.
Diffstat (limited to 'docs/markdown/Continuous-Integration.md')
-rw-r--r-- | docs/markdown/Continuous-Integration.md | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/docs/markdown/Continuous-Integration.md b/docs/markdown/Continuous-Integration.md index 68d6138..96e8e5d 100644 --- a/docs/markdown/Continuous-Integration.md +++ b/docs/markdown/Continuous-Integration.md @@ -1,14 +1,21 @@ # Continuous Integration -Here you will find snippets to use Meson with various CI such as Travis and AppVeyor. +Here you will find snippets to use Meson with various CI such as +Travis and AppVeyor. -Please [file an issue](https://github.com/mesonbuild/meson/issues/new) if these instructions don't work for you. +Please [file an issue](https://github.com/mesonbuild/meson/issues/new) +if these instructions don't work for you. ## Travis for OS X and Linux (with Docker) -Travis for Linux provides ancient versions of Ubuntu which will likely cause problems building your projects regardless of which build system you're using. We recommend using Docker to get a more-recent version of Ubuntu and installing Ninja, Python3, and Meson inside it. +Travis for Linux provides ancient versions of Ubuntu which will likely +cause problems building your projects regardless of which build system +you're using. We recommend using Docker to get a more-recent version +of Ubuntu and installing Ninja, Python3, and Meson inside it. -This `yml` file is derived from the [configuration used by Meson for running its own tests](https://github.com/mesonbuild/meson/blob/master/.travis.yml). +This `yml` file is derived from the [configuration used by Meson for +running its own +tests](https://github.com/mesonbuild/meson/blob/master/.travis.yml). ```yaml sudo: false @@ -39,7 +46,8 @@ script: ## AppVeyor for Windows -For CI on Windows, [AppVeyor](https://www.appveyor.com/) is probably your best bet. Here's a sample `yml` file for use with that. +For CI on Windows, [AppVeyor](https://www.appveyor.com/) is probably +your best bet. Here's a sample `yml` file for use with that. ```yaml os: Visual Studio 2015 |