potiuk commented on code in PR #29213:
URL: https://github.com/apache/airflow/pull/29213#discussion_r1089925794
##########
.github/workflows/ci.yml:
##########
@@ -1074,10 +1074,10 @@ jobs:
PR_LABELS: "${{needs.build-info.outputs.pull-request-labels}}"
FULL_TESTS_NEEDED: "${{needs.build-info.outputs.full-tests-needed}}"
DEBUG_RESOURCES: "${{needs.build-info.outputs.debug-resources}}"
- BACKEND: "postgres"
+ BACKEND: "mysql"
PYTHON_MAJOR_MINOR_VERSION:
"${{needs.build-info.outputs.default-python-version}}"
- POSTGRES_VERSION:
"${{needs.build-info.outputs.default-postgres-version}}"
- BACKEND_VERSION: "${{needs.build-info.outputs.default-python-version}}"
+ MYSQL_VERSION:
"${{steps.selective-checks.outputs.default-mysql-version}}"
Review Comment:
You cannot use "step.selective-checks" here, because there is no
"selective-checks" step in this job. The "selective-checks" step is run in
build-info job and the step output is passed-through to be the "build-info" job
output, that's why we need to use "needs.build-info" here (as in the original
job).
##########
.github/workflows/ci.yml:
##########
@@ -1074,10 +1074,10 @@ jobs:
PR_LABELS: "${{needs.build-info.outputs.pull-request-labels}}"
FULL_TESTS_NEEDED: "${{needs.build-info.outputs.full-tests-needed}}"
DEBUG_RESOURCES: "${{needs.build-info.outputs.debug-resources}}"
- BACKEND: "postgres"
+ BACKEND: "mysql"
PYTHON_MAJOR_MINOR_VERSION:
"${{needs.build-info.outputs.default-python-version}}"
- POSTGRES_VERSION:
"${{needs.build-info.outputs.default-postgres-version}}"
- BACKEND_VERSION: "${{needs.build-info.outputs.default-python-version}}"
+ MYSQL_VERSION:
"${{steps.selective-checks.outputs.default-mysql-version}}"
Review Comment:
(this is why the workflow is failing now I guess).
--
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]