forked from deephaven/deephaven-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into nightly/fix-nightly…
…-check * upstream/main: Check documentation labels, fixes deephaven#627 (deephaven#671) Fix integer overflow in SortedRanges.invertOnNew. Fixes deephaven#666. (deephaven#667) Fix integer overflow in SortedRanges.subRangeByPos. Fixes deephaven#664 (deephaven#665) Deploy example scripts and data (deephaven#562) port the numba integration prototype from Enterprise to OSS, fixes feature-523 (deephaven#638) Fix IllegalStateException in TwoValuesContainer triggered from Index.insert(Chunk). Fixes deephaven#652. (deephaven#653) Javadoc search (deephaven#645) Support for jpy integration junit tests (deephaven#632) Populate snapshot request in js api, handle optional left table (deephaven#648) Fix a link formatting bug in CONTRIBUTING.md (deephaven#629)
- Loading branch information
Showing
76 changed files
with
2,101 additions
and
1,716 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -o errexit | ||
set -o pipefail | ||
set -o nounset | ||
|
||
if [ "${HAS_DocumentationNeeded}" == "true" ] ; then | ||
if [ "${HAS_NoDocumentationNeeded}" == "true" ] ; then | ||
>&2 echo "Conflicting documentation requirements" | ||
exit 1 | ||
fi | ||
exit 0 | ||
fi | ||
|
||
if [ "${HAS_NoDocumentationNeeded}" == "true" ] ; then | ||
exit 0 | ||
fi | ||
|
||
>&2 echo "No documentation requirements found" | ||
exit 1 |
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 @@ | ||
name: Label Check CI | ||
|
||
on: | ||
pull_request: | ||
# This set of types only causes this workflow to run once when it is opened, or when the labels | ||
# change. For example, it won't be (and doesn't need to be) retriggered when new commits are | ||
# pushed. | ||
types: [ labeled, unlabeled, opened ] | ||
branches: [ main ] | ||
|
||
jobs: | ||
doc-labels: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check Documentation Labels | ||
env: | ||
HAS_DocumentationNeeded: ${{ contains(github.event.pull_request.labels.*.name, 'DocumentationNeeded') }} | ||
HAS_NoDocumentationNeeded: ${{ contains(github.event.pull_request.labels.*.name, 'NoDocumentationNeeded') }} | ||
run: .github/scripts/check-doc-labels.sh |
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ out/ | |
*.ipr | ||
*.iws | ||
*.iml | ||
data/ | ||
tmp/ | ||
target/ | ||
IRIS_GRADLE_VERSION | ||
|
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
Oops, something went wrong.