Skip to content

Commit 79f51f0

Browse files
committed
chore: try
1 parent 28d83c9 commit 79f51f0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/rust-cubestore-master.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,11 @@ jobs:
4343
key: ubuntu-22.04
4444
- name: Run cargo fmt
4545
run: cargo fmt --check
46+
working-directory: rust/cubestore
4647
- name: Run cargo check
4748
# Re-using test profile to speedup builds
4849
run: cargo check --benches --profile test
50+
working-directory: rust/cubestore
4951
- name: Run cargo test
5052
env:
5153
CUBESTORE_AWS_ACCESS_KEY_ID: ${{ secrets.CUBESTORE_AWS_ACCESS_KEY_ID }}
@@ -55,7 +57,8 @@ jobs:
5557
TEST_KSQL_PASS: ${{ secrets.TEST_KSQL_PASS }}
5658
TEST_KSQL_URL: ${{ secrets.TEST_KSQL_URL }}
5759
run: |
58-
cargo test --manifest-path rust/cubestore/Cargo.toml -j 1
60+
cargo test -j 4
61+
working-directory: rust/cubestore
5962

6063
cubestore-docker-image-dev:
6164
name: Release Cube Store :dev image

.github/workflows/rust-cubestore.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,20 @@ jobs:
5252
key: ubuntu-22.04
5353
- name: Run cargo fmt
5454
run: cargo fmt --check
55+
working-directory: rust/cubestore
5556
- name: Run cargo check
5657
# Re-using test profile to speedup builds
5758
run: cargo check --benches --profile test
59+
working-directory: rust/cubestore
5860
- name: Run cargo test
5961
env:
6062
# LocalDirRemoteFs expect that std::env::temp_dir and its local dir is on same FS, to use `rename`
6163
# On Unix it's controlled by TMPDIR
6264
# When using `container` in GHA checkout will be located in `/__w`, and that's a separate mount from `/tmp`
6365
TMPDIR: /__w/tmp
6466
run: |
65-
cargo test --manifest-path rust/cubestore/Cargo.toml
67+
cargo test
68+
working-directory: rust/cubestore
6669

6770
docker-image-latest:
6871
name: Build only :latest image

0 commit comments

Comments
 (0)