-
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.
Merge branch 'master' into jrivero/cleanup_gzdev
- Loading branch information
Showing
11 changed files
with
13,591 additions
and
31 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Conda env testing | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'conda/envs/legacy/**' | ||
|
||
jobs: | ||
legacy_pixi_test: | ||
runs-on: ubuntu-latest | ||
name: Legacy Pixi | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install pixi | ||
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 # v0.8.1 | ||
with: | ||
locked: true | ||
cache: false # 10Gb limit might be too low for caching | ||
manifest-path: conda/envs/legacy/pixi.toml |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Conda configurations and tools for Gazebo | ||
|
||
This repository hosts the Conda related configurations and files used | ||
by the Gazebo project. | ||
|
||
> [!IMPORTANT] | ||
> Currently the Gazebo project is only using Conda for supporting the | ||
> build on Windows. The builds or Conda packages can perfectly work | ||
> on different platforms but the core team is not actively testing | ||
> them. | ||
## The envs/ (environments) directory | ||
|
||
The environments directory hosts the Conda environments and Pixi projects | ||
configurations used for different combinations of Gazebo distributions. | ||
|
||
## Create environments with Pixi | ||
|
||
[Pixi](https://prefix.dev/) can be used to recreate a Gazebo development | ||
environment. Navigate to the right subdirectory under `envs/` where the | ||
`pixi.lock` and `pixi.toml` files are located and run: | ||
|
||
```bash | ||
pixi install --locked | ||
``` | ||
|
||
## Environments available | ||
|
||
### The legacy environment | ||
|
||
The legacy environment has the goal of replacing the previous vcpkg | ||
installation used by the Gazebo Buildfarm for testing Garden, Harmonic | ||
and Ionic. The software versions chosen are mostly based on the Ubuntu | ||
Jammy versions. | ||
|
||
The legacy enviroment is locked to use always the same exact set of | ||
version dependencies. |
Large diffs are not rendered by default.
Oops, something went wrong.
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,60 @@ | ||
[project] | ||
name = "gazebo" | ||
version = "0.1.0" | ||
description = "Pixi configuration to replicate existing Windows build environment in Gazebo" | ||
authors = ["Jose Luis Rivero <[email protected]>"] | ||
channels = ["conda-forge"] | ||
platforms = ["linux-64", "linux-aarch64", "win-64"] | ||
|
||
[dependencies] | ||
assimp = "*" | ||
bullet-cpp = "*" | ||
cppzmq = "*" | ||
curl = "*" | ||
dartsim = "6.13.2.*" | ||
eigen = "*" | ||
ffmpeg = "*" | ||
freeimage = "*" | ||
gdal = "*" | ||
gflags = "*" | ||
glib = "*" | ||
gts = "*" | ||
jsoncpp = "*" | ||
libprotobuf = "*" | ||
libsqlite = "*" | ||
libzip = "*" | ||
ogre = "1.10.12.1.*" | ||
ogre-next = "2.2.*" | ||
openssl = "*" | ||
protobuf = "*" | ||
pybind11 = "*" | ||
python = "3.9.*" | ||
qt-main = "*" | ||
qwt = "*" | ||
ruby = "3.2.*" | ||
tinyxml2 = "*" | ||
yaml = "*" | ||
zeromq = "*" | ||
|
||
[target.win-64.dependencies] | ||
dlfcn-win32 = "*" | ||
|
||
[target.linux-64.dependencies] | ||
libglu = "*" | ||
libglvnd-devel-cos7-x86_64 = "*" | ||
libwebsockets = "*" | ||
mesa-libegl-devel-cos7-x86_64 = "*" | ||
mesa-libgl-devel-cos7-x86_64 = "*" | ||
vulkan-headers = "*" | ||
|
||
[target.linux-aarch64.dependencies] | ||
libglu = "*" | ||
libglvnd-devel-cos7-aarch64 = "*" | ||
mesa-libegl-devel-cos7-aarch64 = "*" | ||
mesa-libgl-devel-cos7-aarch64 = "*" | ||
|
||
[build-dependencies] | ||
cmake = "3.28.3.*" | ||
colcon-common-extensions = "*" | ||
pkg-config = "*" | ||
vcstool = "*" |
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
Oops, something went wrong.