Skip to content

Commit 3157b45

Browse files
authored
Merge pull request #15 from embulk/bump-up-to-v0.10.36
Bump up to v0.10.36-SNAPSHOT
2 parents 8b89540 + f276557 commit 3157b45

File tree

2 files changed

+7
-26
lines changed

2 files changed

+7
-26
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,8 @@ jobs:
1111
matrix:
1212
os:
1313
- ubuntu-latest
14-
- macOS-latest
14+
# - macOS-latest # https://github.com/embulk/embulk-standards/issues/16
1515
- windows-latest
16-
gradle_task:
17-
- ":embulk-decoder-bzip2:check"
18-
- ":embulk-decoder-gzip:check"
19-
- ":embulk-encoder-bzip2:check"
20-
- ":embulk-encoder-gzip:check"
21-
- ":embulk-filter-remove_columns:check"
22-
- ":embulk-filter-rename:check"
23-
- ":embulk-formatter-csv:check"
24-
- ":embulk-guess-bzip2:check"
25-
- ":embulk-guess-csv:check"
26-
- ":embulk-guess-csv_all_strings:check"
27-
- ":embulk-guess-gzip:check"
28-
- ":embulk-guess-json:check"
29-
- ":embulk-input-config:check"
30-
- ":embulk-input-file:check"
31-
- ":embulk-output-file:check"
32-
- ":embulk-output-null:check"
33-
- ":embulk-output-stdout:check"
34-
- ":embulk-parser-csv:check"
35-
- ":embulk-parser-json:check"
3616
steps:
3717
- name: Set Git's core.autocrlf to false for Windows before checkout
3818
run: git config --global core.autocrlf false
@@ -41,7 +21,8 @@ jobs:
4121
uses: actions/setup-java@v2
4222
with:
4323
java-version: 8
44-
distribution: "zulu"
24+
distribution: "temurin"
25+
cache: "gradle"
4526

4627
# GitHub Actions on Windows set environment variables TMP and TEMP with a legacy DOS 8.3 filename: "C:\Users\RUNNER~1\..."
4728
# On the other hand, "embulk-input-file" expects a long filename (LFN) on Windows.
@@ -56,6 +37,5 @@ jobs:
5637
- name: Override TEMP to use Windows' long filename (LFN)
5738
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
5839
if: matrix.os == 'windows-latest'
59-
60-
- name: Build and test
61-
run: ./gradlew ${{ matrix.gradle_task }}
40+
- name: Check all plugins
41+
run: ./gradlew --stacktrace check

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111
}
1212

1313
group = "org.embulk"
14-
version = "0.10.35-SNAPSHOT"
14+
version = "0.10.36-SNAPSHOT"
1515

1616
task releaseCheck {
1717
doFirst {
@@ -57,6 +57,7 @@ subprojects {
5757
}
5858

5959
afterEvaluate { project ->
60+
rootProject.check.dependsOn project.check
6061
rootProject.release.dependsOn project.publishMavenPublicationToMavenCentralRepository
6162
}
6263
}

0 commit comments

Comments
 (0)