Skip to content

Commit

Permalink
Merge branch 'main' into unity_6_sim_tcp
Browse files Browse the repository at this point in the history
  • Loading branch information
XingjianL committed Sep 24, 2024
2 parents 1e75bcd + ff51729 commit a1b8dae
Show file tree
Hide file tree
Showing 960 changed files with 7,268 additions and 898 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Build docs
run: cargo doc --all-features
run: cargo doc --features logging,graphing

- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=sw8s_rust_lib/index.html">' > target/doc/index.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-graphs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Build graphs
run: RUST_BACKTRACE=1 cargo run --all-features --bin sw8s_rust_graphs
run: RUST_BACKTRACE=1 cargo run --features logging,graphing --bin sw8s_rust_graphs

- name: Prepare graphs for web
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Run rust-clippy
run:
cargo clippy
--all-features
--features logging,graphing
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Run tests
run: cargo test --all-features --verbose
run: cargo test --features logging,graphing --verbose
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,16 @@ util/.sw8_ssh_identity
graphs
sysroot-jetson
target-jetson
console/

# Ignore all log files generated
logging/

# Ignore JetBrains IDE config folder
.idea/

.vscode
.vscode/

# Ignore perf output
flamegraph.svg
perf.data*
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

Loading

0 comments on commit a1b8dae

Please sign in to comment.