forked from BehaviorTree/BehaviorTree.CPP
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,11 +23,7 @@ jobs: | |
# Pixi is the tool used to create/manage conda environment | ||
- uses: prefix-dev/[email protected] | ||
with: | ||
pixi-version: v0.7.0 | ||
locked: false | ||
frozen: false | ||
run-install: false | ||
manifest-path: build-env/pixi.yaml | ||
pixi-version: v0.16.1 | ||
- name: Make pixi workspace | ||
run: | | ||
pixi init build-env | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,6 @@ CMakeSettings.json | |
|
||
# OSX junk | ||
.DS_Store | ||
# pixi environments | ||
.pixi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[project] | ||
name = "BehaviorTree.CPP" | ||
version = "4.5.2" | ||
description = "This C++ 17 library provides a framework to create BehaviorTrees" | ||
authors = ["Tony Paulussen <[email protected]>"] | ||
channels = ["conda-forge"] | ||
platforms = ["linux-64", "win-64"] | ||
|
||
[target.win-64.tasks] | ||
test = "'PATH=\"$PATH;build/Release\" build/tests/Release/behaviortree_cpp_test.exe'" | ||
|
||
[target.linux-64.tasks] | ||
test = "./build/tests/behaviortree_cpp_test" | ||
|
||
[tasks] | ||
build = "cd build; cmake ../BehaviorTree.CPP -DCMAKE_BUILD_TYPE=Release; cmake --build . --parallel --config Release" | ||
|
||
[dependencies] | ||
|
||
[target.win-64.dependencies] | ||
vs2022_win-64 = "19.*" | ||
|
||
[target.linux-64.dependencies] | ||
gxx = "12.2.*" |