-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed docker bug minimized the size for docker by removing cache and optimizing which torch is installed * fixed introspection error now docker should be good to go * removed webots as an external module and replaced with a script from bit bots to install. this will make the code a lot more modular and decrease size. Made scripts to install and get the env uptodate so that new members dont have to struggle on installitaion * Removed .idea files --------- Co-authored-by: manx52 <[email protected]>
- Loading branch information
1 parent
065a2f8
commit 383fe81
Showing
16 changed files
with
178 additions
and
226 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
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 |
---|---|---|
@@ -1,7 +1,3 @@ | ||
[submodule "external/webots"] | ||
path = external/webots | ||
url = [email protected]:utra-robosoccer/webots.git | ||
branch = R2022b | ||
[submodule "external/GameController"] | ||
path = external/GameController | ||
url = [email protected]:RoboCup-Humanoid-TC/GameController.git | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Submodule webots
deleted from
a5ad48
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#!/usr/bin/env bash | ||
export GAME_CONTROLLER_HOME=~/catkin_ws/src/soccerbot/external/GameController/ | ||
export JAVA_HOME=/usr | ||
cd ~/catkin_ws/src/soccerbot/external/webots || exit 1 | ||
#./webots ./../hlvs_webots/worlds/robocup.wbt | ||
./webots ./../hlvs_webots/worlds/robocup.wbt | ||
export WEBOTS_HOME=/usr/local/webots | ||
|
||
cd ~/catkin_ws/src/soccerbot/external || exit 1 | ||
webots ./hlvs_webots/worlds/robocup.wbt |
Oops, something went wrong.