-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Github Action] Run build on all platforms (#2626)
- Loading branch information
Showing
3 changed files
with
2 additions
and
46 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,24 +44,11 @@ jobs: | |
distribution: 'zulu' | ||
java-version: 11 | ||
|
||
- name: appleTest | ||
- name: build | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'macos-latest' | ||
with: | ||
arguments: --full-stacktrace appleTest | ||
|
||
- name: Ubuntu build | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
arguments: --full-stacktrace build | ||
|
||
- name: mingwX64Test | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'windows-latest' | ||
with: | ||
arguments: --full-stacktrace mingwX64Test | ||
|
||
- id: get-arrow-version | ||
name: Get Arrow version | ||
run: echo "::set-output name=arrow-version::$(head -n 1 build/semver/version.txt)" | ||
|
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 |
---|---|---|
|
@@ -25,24 +25,11 @@ jobs: | |
distribution: 'zulu' | ||
java-version: 11 | ||
|
||
- name: appleTest | ||
- name: build | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'macos-latest' | ||
with: | ||
arguments: --full-stacktrace appleTest | ||
|
||
- name: Ubuntu build | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'ubuntu-latest' | ||
with: | ||
arguments: --full-stacktrace build | ||
|
||
- name: mingwX64Test | ||
uses: gradle/[email protected] | ||
if: matrix.os == 'windows-latest' | ||
with: | ||
arguments: --full-stacktrace mingwX64Test | ||
|
||
- name: Upload reports | ||
uses: actions/[email protected] | ||
with: | ||
|
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