File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 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 }}
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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments