Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix if-else statement in ci
  • Loading branch information
SkymanOne committed Aug 8, 2023
commit 0230c209eb66c5643507527a778745bd9ecc0733
3 changes: 2 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ examples-test:
if [ "$example" = "integration-tests/static-buffer/" ]; then
STATIC_BUFFER_SIZE=30 cargo test --verbose --manifest-path ${example}/Cargo.toml --features e2e-tests;
else
cargo test --verbose --manifest-path ${example}/Cargo.toml --features e2e-tests;
cargo test --verbose --manifest-path ${example}/Cargo.toml --features e2e-tests;
fi;
else
cargo test --verbose --manifest-path ${example}/Cargo.toml;
fi;
Expand Down