We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70a9dff commit b41e772Copy full SHA for b41e772
.github/workflows/rust-cubestore.yml
@@ -32,6 +32,8 @@ jobs:
32
env:
33
RUST: ${{ matrix.rust }}
34
steps:
35
+ - name: Prepare directories
36
+ run: ls -l /__w
37
- name: Checkout
38
uses: actions/checkout@v4
39
- name: Install Rust
@@ -57,6 +59,10 @@ jobs:
57
59
run: |
58
60
cargo build --manifest-path rust/cubestore/Cargo.toml
61
- name: Run cargo test
62
+ env:
63
+ # LocalDirRemoteFs expect that std::env::temp_dir and its local dir is on same FS, to use `rename`
64
+ # On Unix it's controlled by TMPDIR
65
+ TMPDIR: /__w/tmp
66
67
cargo test --manifest-path rust/cubestore/Cargo.toml
68
0 commit comments