-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into serverTests
- Loading branch information
Showing
3,472 changed files
with
186,633 additions
and
25,086 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -1,4 +1,15 @@ | ||
.DS_Store | ||
.classpath | ||
.project | ||
.idea/ | ||
target/ | ||
.settings/ | ||
.ipynb_checkpoints/ | ||
*.iml | ||
/bin/ | ||
rumble*.jar | ||
*.*~ | ||
|
||
# for now ignore jsound package | ||
src/main/java/jsound/ | ||
src/main/resources/log4j.properties |
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,112 @@ | ||
image: marioarduini/rumble-source:2020-11-23 | ||
|
||
stages: | ||
- build | ||
- tests2 | ||
- tests3 | ||
|
||
Build: | ||
stage: build | ||
artifacts: | ||
paths: | ||
- target/ | ||
script: | ||
- ant -buildfile build_antlr_parser.xml generate-parser -Dantlr.jar=lib/antlr-4.9.3-complete.jar | ||
- mvn clean compile assembly:single | ||
|
||
SparkRuntimeTest: | ||
stage: tests2 | ||
script: | ||
- mvn -Dtest=SparkRuntimeTests test | ||
|
||
SparkRuntimeTestsNativeDeactivated: | ||
stage: tests2 | ||
script: | ||
- mvn -Dtest=SparkRuntimeTestsNativeDeactivated test | ||
|
||
SparkRuntimeTestsDataFramesDeactivated: | ||
stage: tests2 | ||
script: | ||
- mvn -Dtest=SparkRuntimeTestsDataFramesDeactivated test | ||
|
||
SparkRuntimeTestsParallelismDeactivated: | ||
stage: tests2 | ||
script: | ||
- mvn -Dtest=SparkRuntimeTestsParallelismDeactivated test | ||
|
||
JavaAPITest: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=JavaAPITest test | ||
|
||
FrontendTests: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=FrontendTests test | ||
|
||
RuntimeTests: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=RuntimeTests test | ||
|
||
RuntimeTestsNoParallelism: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=RuntimeTestsNoParallelism test | ||
|
||
RuntimeTestsNoInlining: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=RuntimeTestsNoInlining test | ||
|
||
NativeFLWORRuntimeTests: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=NativeFLWORRuntimeTests test | ||
|
||
NativeFLWORRuntimeTestsNativeDeactivated: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=NativeFLWORRuntimeTestsNativeDeactivated test | ||
|
||
NativeFLWORRuntimeTestsDataFramesDeactivated: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=NativeFLWORRuntimeTestsDataFramesDeactivated test | ||
|
||
NativeFLWORRuntimeTestsParallelismDeactivated: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=NativeFLWORRuntimeTestsParallelismDeactivated test | ||
|
||
updatedeltaruntime-test: | ||
stage: test | ||
script: | ||
- mvn -Dtest=DeltaUpdateRuntimeTests test | ||
|
||
statictyping-test: | ||
stage: test | ||
script: | ||
- mvn -Dtest=StaticTypeTests test | ||
|
||
SpotlessTest: | ||
stage: tests3 | ||
script: | ||
- mvn spotless:check | ||
|
||
MLTests: | ||
stage: tests3 | ||
artifacts: | ||
name: "ML Tests log" | ||
paths: | ||
- target/ml_test.log | ||
when: | ||
always | ||
expire_in: 2 days | ||
script: | ||
- mvn -Dtest=MLTests test --log-file target/ml_test.log | ||
|
||
MLTestsNativeDeactivated: | ||
stage: tests3 | ||
script: | ||
- mvn -Dtest=MLTestsNativeDeactivated test |
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,19 @@ | ||
# Read the Docs configuration file for MkDocs projects | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.12" | ||
|
||
mkdocs: | ||
configuration: mkdocs.yml | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
#python: | ||
# install: | ||
# - requirements: docs/requirements.txt |
Oops, something went wrong.