Skip to content

Commit

Permalink
Use a shorter paths in windows CI to work around path length limits
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwinger committed Jun 29, 2023
1 parent e7eb7cb commit d2a2482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ jobs:
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
set OPENSSL_DIR=C:\Program Files\OpenSSL-Win64
set CARGO_TARGET_DIR=%cd%/rustb
make rusttest NUM_THREADS=18
clang-formatting-check:
Expand Down
2 changes: 1 addition & 1 deletion tools/rust_api/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ fn build_bundled_cmake() -> Result<Vec<PathBuf>, Box<dyn std::error::Error>> {
arrow_build
.no_build_target(true)
// Needs separate out directory so they don't clobber each other
.out_dir(Path::new(&env::var("OUT_DIR").unwrap()).join("build-arrow"));
.out_dir(Path::new(&env::var("OUT_DIR").unwrap()).join("arrow"));

if cfg!(windows) {
arrow_build.generator("Ninja");
Expand Down

0 comments on commit d2a2482

Please sign in to comment.