Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl-WangSK committed Oct 29, 2020
1 parent 0660a05 commit b98f081
Show file tree
Hide file tree
Showing 2,281 changed files with 187,005 additions and 156,011 deletions.
421 changes: 421 additions & 0 deletions .github/workflows/build_and_test.yml

Large diffs are not rendered by default.

273 changes: 0 additions & 273 deletions .github/workflows/master.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/test_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Report test results
on:
workflow_run:
workflows: ["Build and test"]
types:
- completed

jobs:
test_report:
runs-on: ubuntu-latest
steps:
- name: Download test results to report
uses: dawidd6/action-download-artifact@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
workflow: ${{ github.event.workflow_run.workflow_id }}
commit: ${{ github.event.workflow_run.head_commit.id }}
- name: Publish test report
uses: scacap/action-surefire-report@v1
with:
check_name: Report test results
github_token: ${{ secrets.GITHUB_TOKEN }}
report_paths: "**/target/test-reports/*.xml"
commit: ${{ github.event.workflow_run.head_commit.id }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*.swp
*~
.DS_Store
.bsp/
.cache
.classpath
.ensime
Expand Down Expand Up @@ -68,6 +69,7 @@ python/docs/source/reference/api/
python/test_coverage/coverage_data
python/test_coverage/htmlcov
python/pyspark/python
.mypy_cache/
reports/
scalastyle-on-compile.generated.xml
scalastyle-output.xml
Expand All @@ -80,6 +82,7 @@ target/
unit-tests.log
work/
docs/.jekyll-metadata
docs/.jekyll-cache

# For Hive
TempStatsStore/
Expand Down
17 changes: 17 additions & 0 deletions .sbtopts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

-J-Xmx4G
-J-Xss4m
11 changes: 11 additions & 0 deletions R/pkg/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,11 @@ exportMethods("%<=>%",
"arrays_zip",
"arrays_zip_with",
"asc",
"asc_nulls_first",
"asc_nulls_last",
"ascii",
"asin",
"assert_true",
"atan",
"atan2",
"avg",
Expand Down Expand Up @@ -272,6 +275,9 @@ exportMethods("%<=>%",
"degrees",
"dense_rank",
"desc",
"desc_nulls_first",
"desc_nulls_last",
"dropFields",
"element_at",
"encode",
"endsWith",
Expand Down Expand Up @@ -348,6 +354,7 @@ exportMethods("%<=>%",
"negate",
"next_day",
"not",
"nth_value",
"ntile",
"otherwise",
"over",
Expand All @@ -359,6 +366,7 @@ exportMethods("%<=>%",
"posexplode_outer",
"quarter",
"radians",
"raise_error",
"rand",
"randn",
"rank",
Expand Down Expand Up @@ -405,6 +413,7 @@ exportMethods("%<=>%",
"sumDistinct",
"tan",
"tanh",
"timestamp_seconds",
"toDegrees",
"toRadians",
"to_csv",
Expand All @@ -425,9 +434,11 @@ exportMethods("%<=>%",
"variance",
"var_pop",
"var_samp",
"vector_to_array",
"weekofyear",
"when",
"window",
"withField",
"xxhash64",
"year")

Expand Down
Loading

0 comments on commit b98f081

Please sign in to comment.