jedcunningham commented on code in PR #23841:
URL: https://github.com/apache/airflow/pull/23841#discussion_r878605836
##########
.github/workflows/ci.yml:
##########
@@ -392,7 +392,7 @@ jobs:
awk 'BEGIN{FS="="} {print $3}' | sed s'/["}]//g')
echo "DEFAULT_CONSTRAINTS_BRANCH=${DEFAULT_CONSTRAINTS_BRANCH}" >>
$GITHUB_ENV
DEBIAN_VERSION=$(grep "export DEBIAN_VERSION"
scripts/ci/libraries/_initialization.sh | \
- cut -d "=" -f 3 | sed s'/["}]//g')
+ awk 'BEGIN{FS="="} {print $3}' | sed s'/["}]//g')
Review Comment:
The output of this is the same, but let's be consistent across the board.
##########
.github/workflows/ci.yml:
##########
@@ -328,6 +326,8 @@ jobs:
awk 'BEGIN{FS="="} {print $3}' | sed s'/["}]//g')
echo "DEBIAN_VERSION=${DEBIAN_VERSION}" >> $GITHUB_ENV
if: needs.build-info.outputs.inWorkflowBuild == 'true'
+ - run: ./scripts/ci/install_breeze.sh
+ if: needs.build-info.outputs.inWorkflowBuild == 'true'
Review Comment:
The order here is all I really see different between CI and PROD, so
hopefully reordering them will help?
--
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]