Skip to content

Commit b41e772

Browse files
committed
ci(cubestore): Remove jobs limit for build and test
1 parent 70a9dff commit b41e772

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/rust-cubestore.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
env:
3333
RUST: ${{ matrix.rust }}
3434
steps:
35+
- name: Prepare directories
36+
run: ls -l /__w
3537
- name: Checkout
3638
uses: actions/checkout@v4
3739
- name: Install Rust
@@ -57,6 +59,10 @@ jobs:
5759
run: |
5860
cargo build --manifest-path rust/cubestore/Cargo.toml
5961
- 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
6066
run: |
6167
cargo test --manifest-path rust/cubestore/Cargo.toml
6268

0 commit comments

Comments
 (0)