-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use conda environments in gz-collections #1238
Merged
Merged
Conversation
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
Signed-off-by: Jose Luis Rivero <jrivero@honurobotics.com>
Signed-off-by: Jose Luis Rivero <jrivero@honurobotics.com>
Diff is good to add most of the stuff and keep no-changes in production level:
```diff
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_cmake-3-win.xml /tmp/pr_xml_configuration/gz_cmake-3-win.xml
--- /tmp/current_xml_configuration/gz_cmake-3-win.xml 2025-01-17 16:56:56.481632703 +0000
+++ /tmp/pr_xml_configuration/gz_cmake-3-win.xml 2025-01-17 16:55:39.705140253 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-cmake
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_cmake-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_cmake-4-win.xml /tmp/pr_xml_configuration/gz_cmake-4-win.xml
--- /tmp/current_xml_configuration/gz_cmake-4-win.xml 2025-01-17 16:57:06.793699930 +0000
+++ /tmp/pr_xml_configuration/gz_cmake-4-win.xml 2025-01-17 16:55:50.057212245 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-cmake
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_cmake-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_cmake-ign-cmake2-win.xml /tmp/pr_xml_configuration/gz_cmake-ign-cmake2-win.xml
--- /tmp/current_xml_configuration/gz_cmake-ign-cmake2-win.xml 2025-01-17 16:56:50.001588227 +0000
+++ /tmp/pr_xml_configuration/gz_cmake-ign-cmake2-win.xml 2025-01-17 16:55:33.137088887 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-cmake
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_cmake-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_cmake-main-win.xml /tmp/pr_xml_configuration/gz_cmake-main-win.xml
--- /tmp/current_xml_configuration/gz_cmake-main-win.xml 2025-01-17 16:57:12.005730798 +0000
+++ /tmp/pr_xml_configuration/gz_cmake-main-win.xml 2025-01-17 16:55:55.253246069 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-cmake
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_cmake-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_cmake-pr-win.xml /tmp/pr_xml_configuration/gz_cmake-pr-win.xml
--- /tmp/current_xml_configuration/gz_cmake-pr-win.xml 2025-01-17 16:57:13.365736632 +0000
+++ /tmp/pr_xml_configuration/gz_cmake-pr-win.xml 2025-01-17 16:55:56.625254840 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-cmake
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_cmake-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_common-5-win.xml /tmp/pr_xml_configuration/gz_common-5-win.xml
--- /tmp/current_xml_configuration/gz_common-5-win.xml 2025-01-17 16:56:56.877635307 +0000
+++ /tmp/pr_xml_configuration/gz_common-5-win.xml 2025-01-17 16:55:40.129143605 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-common
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_common-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_common-6-win.xml /tmp/pr_xml_configuration/gz_common-6-win.xml
--- /tmp/current_xml_configuration/gz_common-6-win.xml 2025-01-17 16:57:07.185702453 +0000
+++ /tmp/pr_xml_configuration/gz_common-6-win.xml 2025-01-17 16:55:50.453215170 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-common
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_common-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_common-ign-common4-win.xml /tmp/pr_xml_configuration/gz_common-ign-common4-win.xml
--- /tmp/current_xml_configuration/gz_common-ign-common4-win.xml 2025-01-17 16:56:50.405591042 +0000
+++ /tmp/pr_xml_configuration/gz_common-ign-common4-win.xml 2025-01-17 16:55:33.537091898 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-common
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_common-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_common-main-win.xml /tmp/pr_xml_configuration/gz_common-main-win.xml
--- /tmp/current_xml_configuration/gz_common-main-win.xml 2025-01-17 16:57:12.085731141 +0000
+++ /tmp/pr_xml_configuration/gz_common-main-win.xml 2025-01-17 16:55:55.333246580 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-common
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_common-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_common-pr-win.xml /tmp/pr_xml_configuration/gz_common-pr-win.xml
--- /tmp/current_xml_configuration/gz_common-pr-win.xml 2025-01-17 16:57:16.193750242 +0000
+++ /tmp/pr_xml_configuration/gz_common-pr-win.xml 2025-01-17 16:55:59.449270259 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-common
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_common-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_fuel_tools-10-win.xml /tmp/pr_xml_configuration/gz_fuel_tools-10-win.xml
--- /tmp/current_xml_configuration/gz_fuel_tools-10-win.xml 2025-01-17 16:57:07.501704485 +0000
+++ /tmp/pr_xml_configuration/gz_fuel_tools-10-win.xml 2025-01-17 16:55:50.785217504 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-fuel-tools
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_fuel_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_fuel_tools-9-win.xml /tmp/pr_xml_configuration/gz_fuel_tools-9-win.xml
--- /tmp/current_xml_configuration/gz_fuel_tools-9-win.xml 2025-01-17 16:56:57.193637384 +0000
+++ /tmp/pr_xml_configuration/gz_fuel_tools-9-win.xml 2025-01-17 16:55:40.449146137 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-fuel-tools
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_fuel_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_fuel_tools-ign-fuel-tools7-win.xml /tmp/pr_xml_configuration/gz_fuel_tools-ign-fuel-tools7-win.xml
--- /tmp/current_xml_configuration/gz_fuel_tools-ign-fuel-tools7-win.xml 2025-01-17 16:56:50.725593272 +0000
+++ /tmp/pr_xml_configuration/gz_fuel_tools-ign-fuel-tools7-win.xml 2025-01-17 16:55:33.869094397 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-fuel-tools
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_fuel_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_fuel_tools-main-win.xml /tmp/pr_xml_configuration/gz_fuel_tools-main-win.xml
--- /tmp/current_xml_configuration/gz_fuel_tools-main-win.xml 2025-01-17 16:57:12.161731468 +0000
+++ /tmp/pr_xml_configuration/gz_fuel_tools-main-win.xml 2025-01-17 16:55:55.413247092 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-fuel-tools
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_fuel_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_fuel_tools-pr-win.xml /tmp/pr_xml_configuration/gz_fuel_tools-pr-win.xml
--- /tmp/current_xml_configuration/gz_fuel_tools-pr-win.xml 2025-01-17 16:57:18.773766858 +0000
+++ /tmp/pr_xml_configuration/gz_fuel_tools-pr-win.xml 2025-01-17 16:56:02.045276895 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-fuel-tools
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_fuel_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_gui-8-win.xml /tmp/pr_xml_configuration/gz_gui-8-win.xml
--- /tmp/current_xml_configuration/gz_gui-8-win.xml 2025-01-17 16:56:57.349638410 +0000
+++ /tmp/pr_xml_configuration/gz_gui-8-win.xml 2025-01-17 16:55:40.609147401 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-gui
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_gui-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_gui-9-win.xml /tmp/pr_xml_configuration/gz_gui-9-win.xml
--- /tmp/current_xml_configuration/gz_gui-9-win.xml 2025-01-17 16:57:07.661705515 +0000
+++ /tmp/pr_xml_configuration/gz_gui-9-win.xml 2025-01-17 16:55:50.945218527 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-gui
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_gui-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_gui-ign-gui6-win.xml /tmp/pr_xml_configuration/gz_gui-ign-gui6-win.xml
--- /tmp/current_xml_configuration/gz_gui-ign-gui6-win.xml 2025-01-17 16:56:50.885594387 +0000
+++ /tmp/pr_xml_configuration/gz_gui-ign-gui6-win.xml 2025-01-17 16:55:34.029095602 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-gui
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_gui-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_gui-main-win.xml /tmp/pr_xml_configuration/gz_gui-main-win.xml
--- /tmp/current_xml_configuration/gz_gui-main-win.xml 2025-01-17 16:57:12.241731810 +0000
+++ /tmp/pr_xml_configuration/gz_gui-main-win.xml 2025-01-17 16:55:55.493247603 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-gui
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_gui-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_gui-pr-win.xml /tmp/pr_xml_configuration/gz_gui-pr-win.xml
--- /tmp/current_xml_configuration/gz_gui-pr-win.xml 2025-01-17 16:57:20.049775138 +0000
+++ /tmp/pr_xml_configuration/gz_gui-pr-win.xml 2025-01-17 16:56:03.329285847 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-gui
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_gui-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_launch-7-win.xml /tmp/pr_xml_configuration/gz_launch-7-win.xml
--- /tmp/current_xml_configuration/gz_launch-7-win.xml 2025-01-17 16:56:57.665640487 +0000
+++ /tmp/pr_xml_configuration/gz_launch-7-win.xml 2025-01-17 16:55:40.921149868 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-launch
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_launch-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_launch-8-win.xml /tmp/pr_xml_configuration/gz_launch-8-win.xml
--- /tmp/current_xml_configuration/gz_launch-8-win.xml 2025-01-17 16:57:07.977707547 +0000
+++ /tmp/pr_xml_configuration/gz_launch-8-win.xml 2025-01-17 16:55:51.261220548 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-launch
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_launch-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_launch-ign-launch5-win.xml /tmp/pr_xml_configuration/gz_launch-ign-launch5-win.xml
--- /tmp/current_xml_configuration/gz_launch-ign-launch5-win.xml 2025-01-17 16:56:51.209596646 +0000
+++ /tmp/pr_xml_configuration/gz_launch-ign-launch5-win.xml 2025-01-17 16:55:34.353098041 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-launch
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_launch-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_launch-main-win.xml /tmp/pr_xml_configuration/gz_launch-main-win.xml
--- /tmp/current_xml_configuration/gz_launch-main-win.xml 2025-01-17 16:57:12.321732154 +0000
+++ /tmp/pr_xml_configuration/gz_launch-main-win.xml 2025-01-17 16:55:55.573248115 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-launch
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_launch-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_launch-pr-win.xml /tmp/pr_xml_configuration/gz_launch-pr-win.xml
--- /tmp/current_xml_configuration/gz_launch-pr-win.xml 2025-01-17 16:57:22.649792007 +0000
+++ /tmp/pr_xml_configuration/gz_launch-pr-win.xml 2025-01-17 16:56:05.909303834 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-launch
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_launch-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_math-7-win.xml /tmp/pr_xml_configuration/gz_math-7-win.xml
--- /tmp/current_xml_configuration/gz_math-7-win.xml 2025-01-17 16:56:56.717634254 +0000
+++ /tmp/pr_xml_configuration/gz_math-7-win.xml 2025-01-17 16:55:39.969142341 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-math
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_math-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_math-8-win.xml /tmp/pr_xml_configuration/gz_math-8-win.xml
--- /tmp/current_xml_configuration/gz_math-8-win.xml 2025-01-17 16:57:07.029701449 +0000
+++ /tmp/pr_xml_configuration/gz_math-8-win.xml 2025-01-17 16:55:50.293213988 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-math
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_math-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_math-ign-math6-win.xml /tmp/pr_xml_configuration/gz_math-ign-math6-win.xml
--- /tmp/current_xml_configuration/gz_math-ign-math6-win.xml 2025-01-17 16:56:50.245589927 +0000
+++ /tmp/pr_xml_configuration/gz_math-ign-math6-win.xml 2025-01-17 16:55:33.381090724 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-math
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_math-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_math-main-win.xml /tmp/pr_xml_configuration/gz_math-main-win.xml
--- /tmp/current_xml_configuration/gz_math-main-win.xml 2025-01-17 16:57:12.401732497 +0000
+++ /tmp/pr_xml_configuration/gz_math-main-win.xml 2025-01-17 16:55:55.649248600 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-math
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_math-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_math-pr-win.xml /tmp/pr_xml_configuration/gz_math-pr-win.xml
--- /tmp/current_xml_configuration/gz_math-pr-win.xml 2025-01-17 16:57:14.889743169 +0000
+++ /tmp/pr_xml_configuration/gz_math-pr-win.xml 2025-01-17 16:55:58.161264835 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-math
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_math-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_msgs-10-win.xml /tmp/pr_xml_configuration/gz_msgs-10-win.xml
--- /tmp/current_xml_configuration/gz_msgs-10-win.xml 2025-01-17 16:56:56.953635807 +0000
+++ /tmp/pr_xml_configuration/gz_msgs-10-win.xml 2025-01-17 16:55:40.209144238 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-msgs
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_msgs-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_msgs-11-win.xml /tmp/pr_xml_configuration/gz_msgs-11-win.xml
--- /tmp/current_xml_configuration/gz_msgs-11-win.xml 2025-01-17 16:57:07.265702967 +0000
+++ /tmp/pr_xml_configuration/gz_msgs-11-win.xml 2025-01-17 16:55:50.533215760 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-msgs
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_msgs-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_msgs-ign-msgs8-win.xml /tmp/pr_xml_configuration/gz_msgs-ign-msgs8-win.xml
--- /tmp/current_xml_configuration/gz_msgs-ign-msgs8-win.xml 2025-01-17 16:56:50.485591600 +0000
+++ /tmp/pr_xml_configuration/gz_msgs-ign-msgs8-win.xml 2025-01-17 16:55:33.617092500 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-msgs
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_msgs-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_msgs-main-win.xml /tmp/pr_xml_configuration/gz_msgs-main-win.xml
--- /tmp/current_xml_configuration/gz_msgs-main-win.xml 2025-01-17 16:57:12.481732840 +0000
+++ /tmp/pr_xml_configuration/gz_msgs-main-win.xml 2025-01-17 16:55:55.729249112 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-msgs
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_msgs-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_msgs-pr-win.xml /tmp/pr_xml_configuration/gz_msgs-pr-win.xml
--- /tmp/current_xml_configuration/gz_msgs-pr-win.xml 2025-01-17 16:57:16.837754389 +0000
+++ /tmp/pr_xml_configuration/gz_msgs-pr-win.xml 2025-01-17 16:56:00.097271648 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-msgs
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_msgs-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_physics-7-win.xml /tmp/pr_xml_configuration/gz_physics-7-win.xml
--- /tmp/current_xml_configuration/gz_physics-7-win.xml 2025-01-17 16:56:57.505639435 +0000
+++ /tmp/pr_xml_configuration/gz_physics-7-win.xml 2025-01-17 16:55:40.765148635 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-physics
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_physics-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_physics-8-win.xml /tmp/pr_xml_configuration/gz_physics-8-win.xml
--- /tmp/current_xml_configuration/gz_physics-8-win.xml 2025-01-17 16:57:07.817706519 +0000
+++ /tmp/pr_xml_configuration/gz_physics-8-win.xml 2025-01-17 16:55:51.101219525 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-physics
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_physics-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_physics-ign-physics5-win.xml /tmp/pr_xml_configuration/gz_physics-ign-physics5-win.xml
--- /tmp/current_xml_configuration/gz_physics-ign-physics5-win.xml 2025-01-17 16:56:51.049595530 +0000
+++ /tmp/pr_xml_configuration/gz_physics-ign-physics5-win.xml 2025-01-17 16:55:34.193096837 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-physics
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_physics-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_physics-main-win.xml /tmp/pr_xml_configuration/gz_physics-main-win.xml
--- /tmp/current_xml_configuration/gz_physics-main-win.xml 2025-01-17 16:57:12.557733166 +0000
+++ /tmp/pr_xml_configuration/gz_physics-main-win.xml 2025-01-17 16:55:55.809249623 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-physics
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_physics-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_physics-pr-win.xml /tmp/pr_xml_configuration/gz_physics-pr-win.xml
--- /tmp/current_xml_configuration/gz_physics-pr-win.xml 2025-01-17 16:57:21.365783676 +0000
+++ /tmp/pr_xml_configuration/gz_physics-pr-win.xml 2025-01-17 16:56:04.621294854 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-physics
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_physics-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_plugin-2-win.xml /tmp/pr_xml_configuration/gz_plugin-2-win.xml
--- /tmp/current_xml_configuration/gz_plugin-2-win.xml 2025-01-17 16:56:56.797634781 +0000
+++ /tmp/pr_xml_configuration/gz_plugin-2-win.xml 2025-01-17 16:55:40.049142973 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-plugin
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_plugin-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_plugin-3-win.xml /tmp/pr_xml_configuration/gz_plugin-3-win.xml
--- /tmp/current_xml_configuration/gz_plugin-3-win.xml 2025-01-17 16:57:07.105701938 +0000
+++ /tmp/pr_xml_configuration/gz_plugin-3-win.xml 2025-01-17 16:55:50.373214579 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-plugin
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_plugin-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_plugin-ign-plugin1-win.xml /tmp/pr_xml_configuration/gz_plugin-ign-plugin1-win.xml
--- /tmp/current_xml_configuration/gz_plugin-ign-plugin1-win.xml 2025-01-17 16:56:50.325590485 +0000
+++ /tmp/pr_xml_configuration/gz_plugin-ign-plugin1-win.xml 2025-01-17 16:55:33.461091326 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-plugin
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_plugin-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_plugin-main-win.xml /tmp/pr_xml_configuration/gz_plugin-main-win.xml
--- /tmp/current_xml_configuration/gz_plugin-main-win.xml 2025-01-17 16:57:12.637733509 +0000
+++ /tmp/pr_xml_configuration/gz_plugin-main-win.xml 2025-01-17 16:55:55.889250135 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-plugin
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_plugin-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_plugin-pr-win.xml /tmp/pr_xml_configuration/gz_plugin-pr-win.xml
--- /tmp/current_xml_configuration/gz_plugin-pr-win.xml 2025-01-17 16:57:15.549746093 +0000
+++ /tmp/pr_xml_configuration/gz_plugin-pr-win.xml 2025-01-17 16:55:58.809268886 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-plugin
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_plugin-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_rendering-8-win.xml /tmp/pr_xml_configuration/gz_rendering-8-win.xml
--- /tmp/current_xml_configuration/gz_rendering-8-win.xml 2025-01-17 16:56:57.033636333 +0000
+++ /tmp/pr_xml_configuration/gz_rendering-8-win.xml 2025-01-17 16:55:40.289144871 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-rendering
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_rendering-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_rendering-9-win.xml /tmp/pr_xml_configuration/gz_rendering-9-win.xml
--- /tmp/current_xml_configuration/gz_rendering-9-win.xml 2025-01-17 16:57:07.345703482 +0000
+++ /tmp/pr_xml_configuration/gz_rendering-9-win.xml 2025-01-17 16:55:50.613216351 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-rendering
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_rendering-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_rendering-ign-rendering6-win.xml /tmp/pr_xml_configuration/gz_rendering-ign-rendering6-win.xml
--- /tmp/current_xml_configuration/gz_rendering-ign-rendering6-win.xml 2025-01-17 16:56:50.565592157 +0000
+++ /tmp/pr_xml_configuration/gz_rendering-ign-rendering6-win.xml 2025-01-17 16:55:33.697093103 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-rendering
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_rendering-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_rendering-main-win.xml /tmp/pr_xml_configuration/gz_rendering-main-win.xml
--- /tmp/current_xml_configuration/gz_rendering-main-win.xml 2025-01-17 16:57:12.717733853 +0000
+++ /tmp/pr_xml_configuration/gz_rendering-main-win.xml 2025-01-17 16:55:55.969250646 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-rendering
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_rendering-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_rendering-pr-win.xml /tmp/pr_xml_configuration/gz_rendering-pr-win.xml
--- /tmp/current_xml_configuration/gz_rendering-pr-win.xml 2025-01-17 16:57:17.477758511 +0000
+++ /tmp/pr_xml_configuration/gz_rendering-pr-win.xml 2025-01-17 16:56:00.741273030 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-rendering
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_rendering-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sensors-8-win.xml /tmp/pr_xml_configuration/gz_sensors-8-win.xml
--- /tmp/current_xml_configuration/gz_sensors-8-win.xml 2025-01-17 16:56:57.429638936 +0000
+++ /tmp/pr_xml_configuration/gz_sensors-8-win.xml 2025-01-17 16:55:40.685148002 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sensors
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sensors-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sensors-9-win.xml /tmp/pr_xml_configuration/gz_sensors-9-win.xml
--- /tmp/current_xml_configuration/gz_sensors-9-win.xml 2025-01-17 16:57:07.737706004 +0000
+++ /tmp/pr_xml_configuration/gz_sensors-9-win.xml 2025-01-17 16:55:51.021219013 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sensors
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sensors-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sensors-ign-sensors6-win.xml /tmp/pr_xml_configuration/gz_sensors-ign-sensors6-win.xml
--- /tmp/current_xml_configuration/gz_sensors-ign-sensors6-win.xml 2025-01-17 16:56:50.965594945 +0000
+++ /tmp/pr_xml_configuration/gz_sensors-ign-sensors6-win.xml 2025-01-17 16:55:34.113096234 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sensors
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sensors-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sensors-main-win.xml /tmp/pr_xml_configuration/gz_sensors-main-win.xml
--- /tmp/current_xml_configuration/gz_sensors-main-win.xml 2025-01-17 16:57:12.793734178 +0000
+++ /tmp/pr_xml_configuration/gz_sensors-main-win.xml 2025-01-17 16:55:56.049251158 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sensors
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sensors-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sensors-pr-win.xml /tmp/pr_xml_configuration/gz_sensors-pr-win.xml
--- /tmp/current_xml_configuration/gz_sensors-pr-win.xml 2025-01-17 16:57:20.717779471 +0000
+++ /tmp/pr_xml_configuration/gz_sensors-pr-win.xml 2025-01-17 16:56:03.981290392 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-sensors
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sensors-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sim-8-win.xml /tmp/pr_xml_configuration/gz_sim-8-win.xml
--- /tmp/current_xml_configuration/gz_sim-8-win.xml 2025-01-17 16:56:57.585639961 +0000
+++ /tmp/pr_xml_configuration/gz_sim-8-win.xml 2025-01-17 16:55:40.845149268 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sim
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sim-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sim-9-win.xml /tmp/pr_xml_configuration/gz_sim-9-win.xml
--- /tmp/current_xml_configuration/gz_sim-9-win.xml 2025-01-17 16:57:07.897707033 +0000
+++ /tmp/pr_xml_configuration/gz_sim-9-win.xml 2025-01-17 16:55:51.181220036 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sim
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sim-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sim-ign-gazebo6-win.xml /tmp/pr_xml_configuration/gz_sim-ign-gazebo6-win.xml
--- /tmp/current_xml_configuration/gz_sim-ign-gazebo6-win.xml 2025-01-17 16:56:51.129596087 +0000
+++ /tmp/pr_xml_configuration/gz_sim-ign-gazebo6-win.xml 2025-01-17 16:55:34.273097439 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sim
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sim-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sim-main-win.xml /tmp/pr_xml_configuration/gz_sim-main-win.xml
--- /tmp/current_xml_configuration/gz_sim-main-win.xml 2025-01-17 16:57:12.873734522 +0000
+++ /tmp/pr_xml_configuration/gz_sim-main-win.xml 2025-01-17 16:55:56.125251644 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-sim
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sim-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_sim-pr-win.xml /tmp/pr_xml_configuration/gz_sim-pr-win.xml
--- /tmp/current_xml_configuration/gz_sim-pr-win.xml 2025-01-17 16:57:22.005787828 +0000
+++ /tmp/pr_xml_configuration/gz_sim-pr-win.xml 2025-01-17 16:56:05.265299344 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-sim
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_sim-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_tools-2-win.xml /tmp/pr_xml_configuration/gz_tools-2-win.xml
--- /tmp/current_xml_configuration/gz_tools-2-win.xml 2025-01-17 16:57:06.873700446 +0000
+++ /tmp/pr_xml_configuration/gz_tools-2-win.xml 2025-01-17 16:55:50.137212836 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-tools
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_tools-ign-tools1-win.xml /tmp/pr_xml_configuration/gz_tools-ign-tools1-win.xml
--- /tmp/current_xml_configuration/gz_tools-ign-tools1-win.xml 2025-01-17 16:56:50.085588812 +0000
+++ /tmp/pr_xml_configuration/gz_tools-ign-tools1-win.xml 2025-01-17 16:55:33.221089519 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-tools
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_tools-main-win.xml /tmp/pr_xml_configuration/gz_tools-main-win.xml
--- /tmp/current_xml_configuration/gz_tools-main-win.xml 2025-01-17 16:57:11.925730456 +0000
+++ /tmp/pr_xml_configuration/gz_tools-main-win.xml 2025-01-17 16:55:55.173245557 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-tools
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_tools-pr-win.xml /tmp/pr_xml_configuration/gz_tools-pr-win.xml
--- /tmp/current_xml_configuration/gz_tools-pr-win.xml 2025-01-17 16:57:13.765738349 +0000
+++ /tmp/pr_xml_configuration/gz_tools-pr-win.xml 2025-01-17 16:55:57.029257423 +0000
@@ -98,6 +98,11 @@
set VCS_DIRECTORY=gz-tools
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_tools-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_transport-13-win.xml /tmp/pr_xml_configuration/gz_transport-13-win.xml
--- /tmp/current_xml_configuration/gz_transport-13-win.xml 2025-01-17 16:56:57.269637884 +0000
+++ /tmp/pr_xml_configuration/gz_transport-13-win.xml 2025-01-17 16:55:40.529146769 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-transport
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_transport-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_transport-14-win.xml /tmp/pr_xml_configuration/gz_transport-14-win.xml
--- /tmp/current_xml_configuration/gz_transport-14-win.xml 2025-01-17 16:57:07.581705000 +0000
+++ /tmp/pr_xml_configuration/gz_transport-14-win.xml 2025-01-17 16:55:50.865218016 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-transport
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_transport-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_transport-ign-transport11-win.xml /tmp/pr_xml_configuration/gz_transport-ign-transport11-win.xml
--- /tmp/current_xml_configuration/gz_transport-ign-transport11-win.xml 2025-01-17 16:56:50.805593830 +0000
+++ /tmp/pr_xml_configuration/gz_transport-ign-transport11-win.xml 2025-01-17 16:55:33.949095000 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-transport
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_transport-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_transport-main-win.xml /tmp/pr_xml_configuration/gz_transport-main-win.xml
--- /tmp/current_xml_configuration/gz_transport-main-win.xml 2025-01-17 16:57:12.949734848 +0000
+++ /tmp/pr_xml_configuration/gz_transport-main-win.xml 2025-01-17 16:55:56.205252155 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-transport
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_transport-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_transport-pr-win.xml /tmp/pr_xml_configuration/gz_transport-pr-win.xml
--- /tmp/current_xml_configuration/gz_transport-pr-win.xml 2025-01-17 16:57:19.409770986 +0000
+++ /tmp/pr_xml_configuration/gz_transport-pr-win.xml 2025-01-17 16:56:02.689281385 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-transport
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_transport-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_utils-2-win.xml /tmp/pr_xml_configuration/gz_utils-2-win.xml
--- /tmp/current_xml_configuration/gz_utils-2-win.xml 2025-01-17 16:56:56.637633728 +0000
+++ /tmp/pr_xml_configuration/gz_utils-2-win.xml 2025-01-17 16:55:39.893141739 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-utils
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_utils-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_utils-3-win.xml /tmp/pr_xml_configuration/gz_utils-3-win.xml
--- /tmp/current_xml_configuration/gz_utils-3-win.xml 2025-01-17 16:57:06.949700935 +0000
+++ /tmp/pr_xml_configuration/gz_utils-3-win.xml 2025-01-17 16:55:50.217213427 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-utils
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_utils-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_utils-ign-utils1-win.xml /tmp/pr_xml_configuration/gz_utils-ign-utils1-win.xml
--- /tmp/current_xml_configuration/gz_utils-ign-utils1-win.xml 2025-01-17 16:56:50.165589370 +0000
+++ /tmp/pr_xml_configuration/gz_utils-ign-utils1-win.xml 2025-01-17 16:55:33.301090121 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-utils
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_utils-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_utils-main-win.xml /tmp/pr_xml_configuration/gz_utils-main-win.xml
--- /tmp/current_xml_configuration/gz_utils-main-win.xml 2025-01-17 16:57:13.037735225 +0000
+++ /tmp/pr_xml_configuration/gz_utils-main-win.xml 2025-01-17 16:55:56.285252667 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=gz-utils
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_utils-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/gz_utils-pr-win.xml /tmp/pr_xml_configuration/gz_utils-pr-win.xml
--- /tmp/current_xml_configuration/gz_utils-pr-win.xml 2025-01-17 16:57:14.249740425 +0000
+++ /tmp/pr_xml_configuration/gz_utils-pr-win.xml 2025-01-17 16:55:57.517260543 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=gz-utils
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/gz_utils-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/sdformat-main-win.xml /tmp/pr_xml_configuration/sdformat-main-win.xml
--- /tmp/current_xml_configuration/sdformat-main-win.xml 2025-01-17 16:57:13.121735585 +0000
+++ /tmp/pr_xml_configuration/sdformat-main-win.xml 2025-01-17 16:55:56.365253178 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=sdformat
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/sdformat-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/sdformat-pr-win.xml /tmp/pr_xml_configuration/sdformat-pr-win.xml
--- /tmp/current_xml_configuration/sdformat-pr-win.xml 2025-01-17 16:57:18.125762685 +0000
+++ /tmp/pr_xml_configuration/sdformat-pr-win.xml 2025-01-17 16:56:01.385274412 +0000
@@ -101,6 +101,11 @@
set VCS_DIRECTORY=sdformat
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/sdformat-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/sdformat-sdf12-win.xml /tmp/pr_xml_configuration/sdformat-sdf12-win.xml
--- /tmp/current_xml_configuration/sdformat-sdf12-win.xml 2025-01-17 16:56:50.645592715 +0000
+++ /tmp/pr_xml_configuration/sdformat-sdf12-win.xml 2025-01-17 16:55:33.777093705 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=sdformat
+set CONDA_ENV_NAME=legacy
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/sdformat-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/sdformat-sdf14-win.xml /tmp/pr_xml_configuration/sdformat-sdf14-win.xml
--- /tmp/current_xml_configuration/sdformat-sdf14-win.xml 2025-01-17 16:56:57.113636858 +0000
+++ /tmp/pr_xml_configuration/sdformat-sdf14-win.xml 2025-01-17 16:55:40.369145504 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=sdformat
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/sdformat-default-devel-windows-amd64.bat"
diff -ur -I '.*dashboard_portlet_.*.*' /tmp/current_xml_configuration/sdformat-sdf15-win.xml /tmp/pr_xml_configuration/sdformat-sdf15-win.xml
--- /tmp/current_xml_configuration/sdformat-sdf15-win.xml 2025-01-17 16:57:07.421703971 +0000
+++ /tmp/pr_xml_configuration/sdformat-sdf15-win.xml 2025-01-17 16:55:50.693216916 +0000
@@ -64,6 +64,11 @@
set VCS_DIRECTORY=sdformat
+set CONDA_ENV_NAME=legacy_ogre23
+if not exist "/.scripts/conda/envs/%CONDA_ENV_NAME%" (
+ echo "Conda environment %CONDA_ENV_NAME% not found"
+ exit 1
+)
call "./scripts/jenkins-scripts/sdformat-default-devel-windows-amd64.bat"
```
|
This was referenced Jan 21, 2025
The changes should not affect in anyway any of the existing jobs and functionality and approach us one step closer to press the switching button. My intention is to merge this and prepare the final PR that enables the switch. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The PR adds information to the
gz-collections.yaml
file about the new Conda environments defined as ci_configs to represent different CI platforms. It contains information about what environment inside therelease-tools/conda/envs
to use that is passed to the jobs inCONDA_ENV_NAME
.In draft by now until we decide how the job names need to change (or not to change).