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 876885f commit 01e266dCopy full SHA for 01e266d
.github/workflows/rust-cubestore.yml
@@ -32,6 +32,9 @@ jobs:
32
env:
33
RUST: ${{ matrix.rust }}
34
steps:
35
+ - name: Prepare directories
36
+ # See TMPDIR comment below
37
+ run: mkdir /__w/tmp
38
- name: Checkout
39
uses: actions/checkout@v4
40
- name: Install Rust
@@ -57,6 +60,11 @@ jobs:
57
60
run: |
58
61
cargo build --manifest-path rust/cubestore/Cargo.toml
59
62
- name: Run cargo test
63
+ env:
64
+ # LocalDirRemoteFs expect that std::env::temp_dir and its local dir is on same FS, to use `rename`
65
+ # On Unix it's controlled by TMPDIR
66
+ # When using `container` in GHA checkout will be located in `/__w`, and that's a separate mount from `/tmp`
67
+ TMPDIR: /__w/tmp
68
69
cargo test --manifest-path rust/cubestore/Cargo.toml
70
0 commit comments