EnricoMi commented on code in PR #36940:
URL: https://github.com/apache/spark/pull/36940#discussion_r902683629
##########
.github/workflows/build_scala213.yml:
##########
@@ -32,8 +32,16 @@ jobs:
java: 8
branch: master
hadoop: hadoop3
- type: scheduled
envs: >-
{
"SCALA_PROFILE": "scala2.13"
}
+ jobs: >-
+ {
+ "build": "true",
+ "pyspark": "true",
+ "sparkr": "true",
+ "tpcds-1g": "true",
+ "docker-integration-tests": "true",
+ "lint" : "true"
Review Comment:
the `lint` job only used to run for regular jobs:
```
if: inputs.type == 'regular'
```
##########
.github/workflows/build_scala213.yml:
##########
@@ -32,8 +32,16 @@ jobs:
java: 8
branch: master
hadoop: hadoop3
- type: scheduled
envs: >-
{
"SCALA_PROFILE": "scala2.13"
}
+ jobs: >-
+ {
+ "build": "true",
+ "pyspark": "true",
+ "sparkr": "true",
+ "tpcds-1g": "true",
+ "docker-integration-tests": "true",
Review Comment:
the `tpcds-1g"` and `docker-integration-tests` jobs only used to run for
regular jobs and when build was required (holds for all scheduled job
workfiles):
```
inputs.type == 'regular' &&
fromJson(needs.precondition.outputs.required).build == 'true'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]