-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca328ec
commit ec35907
Showing
3 changed files
with
60 additions
and
9 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
25 changes: 25 additions & 0 deletions
25
arrow-libs/examples/.github/workflows/check_previous_build_integration.yml
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,25 @@ | ||
name: "Check Previous Build Integration" | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
check-previous_build-integration: | ||
|
||
env: | ||
BASEDIR: ${{github.workspace}}/.. | ||
JAVA_OPTS: -Xms512m -Xmx1024m | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout orchestrator | ||
run: | | ||
cd $BASEDIR | ||
git clone https://github.com/arrow-kt/arrow.git --depth 1 --no-single-branch | ||
- name: Check Build Integration | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
BRANCH_NAME=${{ github.event.pull_request.head.ref }} | ||
$BASEDIR/arrow/scripts/check-build-integration.sh $BRANCH_NAME |
25 changes: 25 additions & 0 deletions
25
arrow-libs/examples/.github/workflows/check_previous_doc_integration.yml
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,25 @@ | ||
name: "Check Previous Doc Integration" | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
check-previous_doc-integration: | ||
|
||
env: | ||
BASEDIR: ${{github.workspace}}/.. | ||
JAVA_OPTS: -Xms512m -Xmx1024m | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout orchestrator | ||
run: | | ||
cd $BASEDIR | ||
git clone https://github.com/arrow-kt/arrow.git --depth 1 --no-single-branch | ||
- name: Check Doc Integration | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
BRANCH_NAME=${{ github.event.pull_request.head.ref }} | ||
$BASEDIR/arrow/scripts/check-doc-integration.sh $BRANCH_NAME |