Skip to content

Commit d08803c

Browse files
authored
Merge pull request #86 from embulk/fix-travis
Fix travis
2 parents 68325f3 + d6bb141 commit d08803c

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ vendor/
77
.ruby-version
88
.tags
99
your-project-000.json
10+
embulk.jar

.travis.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
language: ruby
2-
cache: bundler
3-
rvm:
4-
- jruby-9.0.5.0
5-
- jruby-head
6-
jdk:
7-
- openjdk7
8-
before_install:
9-
- gem install bundler
102
matrix:
11-
allow_failures:
12-
- rvm: jruby-head
3+
include:
4+
- env: EMBULK_VERSION=0.8.39
5+
rvm: jruby-9.1.5.0 # bundled jruby version
6+
jdk: openjdk7 # embulk 0.8.x uses jdk7
7+
# - env: EMBULK_VERSION=0.9.15
8+
# rvm: jruby-9.1.5.0 # bundled jruby version
9+
# jdk: openjdk8 # embulk 0.9.x uses jdk8
10+
# - env: EMBULK_VERSION=latest
11+
# rvm: jruby-9.1.5.0 # ?
12+
# jdk: openjdk8 # ?
13+
# allow_failures:
14+
# - env: EMBULK_VERSION=latest
15+
# before_install:
16+
# - curl -o embulk.jar --create-dirs -L "http://dl.embulk.org/embulk-${EMBULK_VERSION}.jar"
17+
# script: bundle exec env RUBYOPT="-r $PWD/embulk.jar -r embulk" rake test

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ https://developers.google.com/bigquery/loading-data-into-bigquery
1414
* **Cleanup supported**: no
1515
* **Dynamic table creating**: yes
1616

17-
### NOT IMPLEMENTED
17+
### NOT IMPLEMENTED
1818
* insert data over streaming inserts
1919
* for continuous real-time insertions
2020
* Please use other product, like [fluent-plugin-bigquery](https://github.com/kaizenplatform/fluent-plugin-bigquery)
@@ -35,7 +35,7 @@ v0.3.x has incompatibility changes with v0.2.x. Please see [CHANGELOG.md](CHANGE
3535

3636
#### Original options
3737

38-
| name | type | required? | default | description |
38+
| name | type | required? | default | description |
3939
|:-------------------------------------|:------------|:-----------|:-------------------------|:-----------------------|
4040
| mode | string | optional | "append" | See [Mode](#mode) |
4141
| auth_method | string | optional | "private_key" | `private_key` , `json_key` or `compute_engine`
@@ -53,7 +53,7 @@ v0.3.x has incompatibility changes with v0.2.x. Please see [CHANGELOG.md](CHANGE
5353
| prevent_duplicate_insert | boolean | optional | false | See [Prevent Duplication](#prevent-duplication) |
5454
| job_status_max_polling_time | int | optional | 3600 sec | Max job status polling time |
5555
| job_status_polling_interval | int | optional | 10 sec | Job status polling interval |
56-
| is_skip_job_result_check | boolean | optional | false | Skip waiting Load job finishes. Available for append, or delete_in_advance mode |
56+
| is_skip_job_result_check | boolean | optional | false | Skip waiting Load job finishes. Available for append, or delete_in_advance mode |
5757
| with_rehearsal | boolean | optional | false | Load `rehearsal_counts` records as a rehearsal. Rehearsal loads into REHEARSAL temporary table, and delete finally. You may use this option to investigate data errors as early stage as possible |
5858
| rehearsal_counts | integer | optional | 1000 | Specify number of records to load in a rehearsal |
5959
| abort_on_error | boolean | optional | true if max_bad_records is 0, otherwise false | Raise an error if number of input rows and number of output rows does not match |
@@ -80,7 +80,7 @@ Client or request options
8080

8181
Options for intermediate local files
8282

83-
| name | type | required? | default | description |
83+
| name | type | required? | default | description |
8484
|:-------------------------------------|:------------|:-----------|:-------------------------|:-----------------------|
8585
| path_prefix | string | optional | | Path prefix of local files such as "/tmp/prefix_". Default randomly generates with [tempfile](http://ruby-doc.org/stdlib-2.2.3/libdoc/tempfile/rdoc/Tempfile.html) |
8686
| sequence_format | string | optional | .%d.%d | Sequence format for pid, thread id |

0 commit comments

Comments
 (0)