-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'remove-jackson-asl' of https://github.com/jjoyce0510/da…
…tahub-1 into remove-jackson-asl
- Loading branch information
Showing
6 changed files
with
68 additions
and
85 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
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,63 @@ | ||
name: metadata-io | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "docs/**" | ||
- "**.md" | ||
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "docs/**" | ||
- "**.md" | ||
release: | ||
types: [published, edited] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.6" | ||
- name: Gradle build (and test) | ||
# there is some race condition in gradle build, which makes gradle never terminate in ~30% of the runs | ||
# running build first without datahub-web-react:yarnBuild and then with it is 100% stable | ||
# datahub-frontend:unzipAssets depends on datahub-web-react:yarnBuild but gradle does not know about it | ||
run: | | ||
./gradlew :metadata-io:test | ||
- uses: actions/upload-artifact@v2 | ||
if: always() | ||
with: | ||
name: Test Results (metadata-io) | ||
path: | | ||
**/build/reports/tests/test/** | ||
**/build/test-results/test/** | ||
**/junit.*.xml | ||
- name: Ensure codegen is updated | ||
run: | | ||
if output=$(git status --porcelain) && [ ! -z "$output" ]; then | ||
# See https://unix.stackexchange.com/a/155077/378179. | ||
echo 'There are uncommitted changes:' | ||
echo $output | ||
exit 1 | ||
else | ||
echo 'All good!' | ||
fi | ||
event-file: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: Event File | ||
path: ${{ github.event_path }} |
21 changes: 0 additions & 21 deletions
21
...raphql-service/src/main/java/com/linkedin/datahub/graphql/context/SpringQueryContext.java
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
...raphql-service/src/main/java/com/linkedin/datahub/graphql/service/AllowAllAuthorizer.java
This file was deleted.
Oops, something went wrong.
34 changes: 0 additions & 34 deletions
34
...ql-service/src/main/java/com/linkedin/datahub/graphql/service/QueryGraphQLInvocation.java
This file was deleted.
Oops, something went wrong.
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