Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add how to use PGroonga on Travis CI
- Loading branch information
Showing
6 changed files
with
114 additions
and
1 deletion.
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
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,55 @@ | ||
| msgid "" | ||
| msgstr "" | ||
| "Project-Id-Version: PACKAGE VERSION\n" | ||
| "PO-Revision-Date: 2015-10-25 22:48+0900\n" | ||
| "Language: ja\n" | ||
| "MIME-Version: 1.0\n" | ||
| "Content-Type: text/plain; charset=UTF-8\n" | ||
| "Content-Transfer-Encoding: 8bit\n" | ||
| "Plural-Forms: nplurals=1; plural=0;\n" | ||
|
|
||
| msgid "" | ||
| "---\n" | ||
| "title: How to use PGroonga on Travis CI\n" | ||
| "layout: en\n" | ||
| "---" | ||
| msgstr "" | ||
| "---\n" | ||
| "title: Travis CI上でPGroongaを使う方法\n" | ||
| "layout: ja\n" | ||
| "---" | ||
|
|
||
| msgid "# How to use PGroonga on Travis CI" | ||
| msgstr "# Travis CI上でPGroongaを使う方法" | ||
|
|
||
| msgid "You can use PGroonga on [Travis CI](https://travis-ci.org/)." | ||
| msgstr "[Travis CI](https://travis-ci.org/)上でPGroongaを使うことができます。" | ||
|
|
||
| msgid "PGroonga provides shell script to set up PGroonga on Travis CI." | ||
| msgstr "PGroongaはTravis CI上でPGroongaをセットアップするシェルスクリプトを提供しています。" | ||
|
|
||
| msgid "Add the following configuration into your `.travis.yml`:" | ||
| msgstr "`.travis.yml`に次の設定を追加してください。" | ||
|
|
||
| msgid "" | ||
| "```yaml\n" | ||
| "sudo: required\n" | ||
| "install:\n" | ||
| " - curl --silent --location https://github.com/pgroonga/pgroonga/raw/master/d" | ||
| "ata/travis/setup.sh | sh\n" | ||
| "```" | ||
| msgstr "" | ||
|
|
||
| msgid "" | ||
| "`sudo: required` is important. The setup script uses `sudo`. So `sudo: require" | ||
| "d` is required." | ||
| msgstr "" | ||
| "`sudo: required`は重要です。このセットアップスクリプトは`sudo`を使っています。そのため、`sudo: required`が必要なのです" | ||
| "。" | ||
|
|
||
| msgid "" | ||
| "The setup script runs `CREATE EXTENSION pgroonga` against `template1` database" | ||
| ". It means that you can use PGroonga without any instruction on new database." | ||
| msgstr "" | ||
| "このセットアップスクリプトは`template1`データベースに対して`CREATE EXTENSION pgroonga`を実行します。これは新しいデータ" | ||
| "ベースを作成したら何もしなくてもPGroongaを使える状態になっているということです。" |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| --- | ||
| title: How to use PGroonga on Travis CI | ||
| layout: en | ||
| --- | ||
|
|
||
| # How to use PGroonga on Travis CI | ||
|
|
||
| You can use PGroonga on [Travis CI](https://travis-ci.org/). | ||
|
|
||
| PGroonga provides shell script to set up PGroonga on Travis CI. | ||
|
|
||
| Add the following configuration into your `.travis.yml`: | ||
|
|
||
| ```yaml | ||
| sudo: required | ||
| install: | ||
| - curl --silent --location https://github.com/pgroonga/pgroonga/raw/master/data/travis/setup.sh | sh | ||
| ``` | ||
|
|
||
| `sudo: required` is important. The setup script uses `sudo`. So `sudo: required` is required. | ||
|
|
||
| The setup script runs `CREATE EXTENSION pgroonga` against `template1` database. It means that you can use PGroonga without any instruction on new database. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| --- | ||
| title: Travis CI上でPGroongaを使う方法 | ||
| layout: ja | ||
| --- | ||
|
|
||
| # Travis CI上でPGroongaを使う方法 | ||
|
|
||
| [Travis CI](https://travis-ci.org/)上でPGroongaを使うことができます。 | ||
|
|
||
| PGroongaはTravis CI上でPGroongaをセットアップするシェルスクリプトを提供しています。 | ||
|
|
||
| `.travis.yml`に次の設定を追加してください。 | ||
|
|
||
| ```yaml | ||
| sudo: required | ||
| install: | ||
| - curl --silent --location https://github.com/pgroonga/pgroonga/raw/master/data/travis/setup.sh | sh | ||
| ``` | ||
|
|
||
| `sudo: required`は重要です。このセットアップスクリプトは`sudo`を使っています。そのため、`sudo: required`が必要なのです。 | ||
|
|
||
| このセットアップスクリプトは`template1`データベースに対して`CREATE EXTENSION pgroonga`を実行します。これは新しいデータベースを作成したら何もしなくてもPGroongaを使える状態になっているということです。 |