Skip to content

Commit d47f62f

Browse files
committed
Cassandra: Remove build step
This step does not bring us any benefit. It also makes the CI run longer, because the project has to be recompiled in the next step anyway, because it has different RUSTFLAGS. Instead of changing the RUSTFLAGS in the build step (and risking similar problems in the future), let's remove it.
1 parent 4f0a05e commit d47f62f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/cassandra.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
# A separate step for building to separate measuring time of compilation and testing
2727
- name: Update rust toolchain
2828
run: rustup update
29-
- name: Build the project
30-
run: cargo build --tests --features "full-serialization"
3129
- name: Run tests on cassandra
3230
run: |
3331
CDC='disabled' RUSTFLAGS="--cfg cassandra_tests" RUST_LOG=trace SCYLLA_URI=172.42.0.2:9042 SCYLLA_URI2=172.42.0.3:9042 SCYLLA_URI3=172.42.0.4:9042 cargo test --features "full-serialization" -- --skip test_views_in_schema_info --skip test_large_batch_statements

0 commit comments

Comments
 (0)