Skip to content

Commit

Permalink
[ci][win] Build in both release and debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Apr 5, 2024
1 parent c28350e commit a80f9ac
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
fail-fast: false
matrix:
toolset: [""]
build_type: [Release]
build_type: [Debug, Release]
build_shared_libs: [OFF] # TODO(JS): Add ON once shared lib build is resolved

steps:
Expand Down
18 changes: 18 additions & 0 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,21 @@ test-dartpy = { cmd = "cmake --build build --config Release -j --target pytest",
test-all = { cmd = "cmake --build build --config Release -j --target ALL", depends_on = [
"configure",
] }
example-hello-world = { cmd = "cmake --build build --config Release --target hello_world --parallel && ./build/bin/hello_world", depends_on = [
"configure",
] }
example-atlas-puppet = { cmd = "cmake --build build --config Release --target atlas_puppet --parallel && ./build/bin/atlas_puppet", depends_on = [
"configure",
] }
example-atlas-simbicon = { cmd = "cmake --build build --config Release --target atlas_simbicon --parallel && ./build/bin/atlas_simbicon", depends_on = [
"configure",
] }
bm-boxes = { cmd = "cmake --build build --config Release --target BM_INTEGRATION_boxes --parallel && ./build/bin/BM_INTEGRATION_boxes", depends_on = [
"configure",
] }
bm-empty = { cmd = "cmake --build build --config Release --target BM_INTEGRATION_empty --parallel && ./build/bin/BM_INTEGRATION_empty", depends_on = [
"configure",
] }
bm-kinematics = { cmd = "cmake --build build --config Release --target BM_INTEGRATION_kinematics --parallel && ./build/bin/BM_INTEGRATION_kinematics", depends_on = [
"configure",
] }

0 comments on commit a80f9ac

Please sign in to comment.