Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Update arrow and datafusion to 49.0.0 #24605

Merged
merged 8 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
56 changes: 29 additions & 27 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,32 +323,34 @@ jobs:
name: Check iox_data_generator compiles
command: cargo check --package="iox_data_generator" --no-default-features

# Lint protobufs.
protobuf-lint:
docker:
- image: bufbuild/buf:0.40.0
environment:
# Value to look for to skip breaking changes check
SKIP_LABEL: "https://api.github.com/repos/influxdata/influxdb/labels/incompatible%20protobuf"
steps:
- checkout
- run:
name: buf lint
command: buf lint
- run:
name: buf breaking changes
command: |
echo "If you want to make changes forbidden by this lint, please"
echo "coordinate with the conductor team, add the 'incompatible protobuf' label"
echo "to the PR, and rerun this test"
# Check if label is present using github API:
# Inspired by https://discuss.circleci.com/t/tag-label-filter/11158
if wget -O - https://api.github.com/repos/influxdata/influxdb/issues/$(echo $CIRCLE_PULL_REQUEST | grep -oE "[^/pull]+$") | grep "$SKIP_LABEL" ; then echo "SKIPPING (FOUND LABEL)" && exit ; else echo "CHECKING (NO LABEL FOUND)"; fi
git fetch origin main
# compare against only changes in this branch (not against
# other stuff that may have been added to main since last merge)
MERGE_BASE=$(git merge-base origin/main $CIRCLE_BRANCH) sh -c 'buf breaking --against ".git#ref=$MERGE_BASE,depth=100"'

# TODO: Figure out how to get this to work with changes in IOx Repo
# and here
# # Lint protobufs.
# protobuf-lint:
# docker:
# - image: bufbuild/buf:0.40.0
# environment:
# # Value to look for to skip breaking changes check
# SKIP_LABEL: "https://api.github.com/repos/influxdata/influxdb/labels/incompatible%20protobuf"
# steps:
# - checkout
# - run:
# name: buf lint
# command: buf lint
# - run:
# name: buf breaking changes
# command: |
# echo "If you want to make changes forbidden by this lint, please"
# echo "coordinate with the conductor team, add the 'incompatible protobuf' label"
# echo "to the PR, and rerun this test"
# # Check if label is present using github API:
# # Inspired by https://discuss.circleci.com/t/tag-label-filter/11158
# if wget -O - https://api.github.com/repos/influxdata/influxdb/issues/$(echo $CIRCLE_PULL_REQUEST | grep -oE "[^/pull]+$") | grep "$SKIP_LABEL" ; then echo "SKIPPING (FOUND LABEL)" && exit ; else echo "CHECKING (NO LABEL FOUND)"; fi
# git fetch origin main
# # compare against only changes in this branch (not against
# # other stuff that may have been added to main since last merge)
# MERGE_BASE=$(git merge-base origin/main $CIRCLE_BRANCH) sh -c 'buf breaking --against ".git#ref=$MERGE_BASE,depth=100"'
#
# Lint docs
docs-lint:
docker:
Expand Down Expand Up @@ -455,7 +457,7 @@ workflows:
- fmt
- lint
- cargo_audit
- protobuf-lint
# - protobuf-lint
- docs-lint
- test
- test_heappy
Expand Down
Loading