We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e59f66a commit 3b76ccaCopy full SHA for 3b76cca
1 file changed
.github/workflows/breaking_changes_detector.yml
@@ -77,6 +77,15 @@ jobs:
77
echo "packages=$PACKAGES" >> "$GITHUB_OUTPUT"
78
echo "Changed crates: $PACKAGES"
79
80
+ # `datafusion-substrait` (and crates that depend on it via sqllogictest)
81
+ # have a build script that calls protoc, which is not preinstalled on
82
+ # ubuntu-latest runners.
83
+ - name: Install Protobuf Compiler
84
+ if: steps.changed_crates.outputs.packages != ''
85
+ run: |
86
+ sudo apt-get update
87
+ sudo apt-get install -y protobuf-compiler
88
+
89
- name: Install cargo-semver-checks
90
if: steps.changed_crates.outputs.packages != ''
91
uses: taiki-e/install-action@94cb46f8d6e437890146ffbd78a778b78e623fb2 # v2.74.0
0 commit comments