-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
ARROW-17830: [C++][Gandiva] Temporarily pin LLVM version on AppVeyor #14228
Conversation
|
005ea33
to
cba216f
Compare
cba216f
to
356e7f8
Compare
e7cb9d1
to
1624e9d
Compare
Sent an issue to conda llvm: conda-forge/llvmdev-feedstock#175 |
@lidavidm Appveyor is green now. |
How about pinning LLVM to old version instead? diff --git a/ci/conda_env_gandiva_win.txt b/ci/conda_env_gandiva_win.txt
index 621b6f5a99..138b9bd200 100644
--- a/ci/conda_env_gandiva_win.txt
+++ b/ci/conda_env_gandiva_win.txt
@@ -15,5 +15,6 @@
# specific language governing permissions and limitations
# under the License.
-clangdev
-llvmdev
+# ARROW-17830: Conda's packaging of LLVM 15 have a bug
+clangdev<15
+llvmdev<15 |
@kou Done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
Benchmark runs are scheduled for baseline = b2871bb and contender = 7808280. 7808280 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
['Python', 'R'] benchmarks have high level of regressions. |
…pache#14228) Temporarily pin LLVM version on Appveyor due to a bug in Conda's packaging of LLVM. Authored-by: Jin Shang <shangjin1997@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
…pache#14228) Temporarily pin LLVM version on Appveyor due to a bug in Conda's packaging of LLVM. Authored-by: Jin Shang <shangjin1997@gmail.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Temporarily pin LLVM version on Appveyor due to a bug in Conda's packaging of LLVM.