Skip to content
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

CI testing for "Rename CMake project to gz" #10

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ci/before_dep_compilation.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
apt-get purge -y ".*ignition.*" ".*sdformat.*"
65 changes: 65 additions & 0 deletions .github/ci/dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
repositories:
gz-cmake:
type: git
url: https://github.com/gazebosim/gz-cmake
version: gz_cmake_project
gz-common:
type: git
url: https://github.com/gazebosim/gz-common
version: gz_cmake_project
gz-fuel-tools:
type: git
url: https://github.com/gazebosim/gz-fuel-tools
version: gz_cmake_project
gz-gui:
type: git
url: https://github.com/gazebosim/gz-gui
version: gz_cmake_project
gz-launch:
type: git
url: https://github.com/gazebosim/gz-launch
version: gz_cmake_project
gz-math:
type: git
url: https://github.com/gazebosim/gz-math
version: gz_cmake_project
gz-msgs:
type: git
url: https://github.com/gazebosim/gz-msgs
version: gz_cmake_project
gz-physics:
type: git
url: https://github.com/gazebosim/gz-physics
version: gz_cmake_project
gz-plugin:
type: git
url: https://github.com/gazebosim/gz-plugin
version: gz_cmake_project
gz-rendering:
type: git
url: https://github.com/gazebosim/gz-rendering
version: gz_cmake_project
gz-sensors:
type: git
url: https://github.com/gazebosim/gz-sensors
version: gz_cmake_project
gz-sim:
type: git
url: https://github.com/gazebosim/gz-sim
version: gz_cmake_project
gz-tools:
type: git
url: https://github.com/gazebosim/gz-tools
version: gz_cmake_project
gz-transport:
type: git
url: https://github.com/gazebosim/gz-transport
version: gz_cmake_project
gz-utils:
type: git
url: https://github.com/gazebosim/gz-utils
version: gz_cmake_project
sdformat:
type: git
url: https://github.com/osrf/sdformat
version: gz_cmake_project
16 changes: 0 additions & 16 deletions .github/ci/packages.apt
Original file line number Diff line number Diff line change
@@ -1,16 +0,0 @@
libignition-cmake3-dev
libignition-common5-dev
libignition-fuel-tools8-dev
libignition-gazebo7-dev
libignition-gui7-dev
libignition-launch6-dev
libignition-math7-dev
libignition-math7-eigen3-dev
libignition-msgs9-dev
libignition-physics6-dev
libignition-plugin2-dev
libignition-rendering7-dev
libignition-sensors7-dev
libignition-tools2-dev
libignition-transport12-dev
libsdformat13-dev
34 changes: 17 additions & 17 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
#============================================================================
# Initialize the project
#============================================================================
project(ignition-garden VERSION 1.0.0)
project(gz-garden VERSION 1.0.0)

#============================================================================
# Find ignition-cmake
# Find gz-cmake
#============================================================================
# If you get an error at this line, you need to install ignition-cmake
find_package(ignition-cmake3 REQUIRED)
# If you get an error at this line, you need to install gz-cmake
find_package(gz-cmake3 REQUIRED)

#============================================================================
# Configure the project
Expand All @@ -18,19 +18,19 @@ ign_configure_project(VERSION_SUFFIX pre1)

# all list of garden packages

ign_find_package(ignition-common5 REQUIRED)
ign_find_package(ignition-fuel_tools8 REQUIRED)
ign_find_package(ignition-gazebo7 REQUIRED)
ign_find_package(ignition-gui7 REQUIRED)
ign_find_package(ignition-launch6 REQUIRED)
ign_find_package(ignition-math7 REQUIRED COMPONENTS eigen3)
ign_find_package(ignition-msgs9 REQUIRED)
ign_find_package(ignition-physics6 REQUIRED)
ign_find_package(ignition-plugin2 REQUIRED)
ign_find_package(ignition-rendering7 REQUIRED)
ign_find_package(ignition-sensors7 REQUIRED)
ign_find_package(ignition-transport12 REQUIRED)
ign_find_package(ignition-utils2 REQUIRED)
ign_find_package(gz-common5 REQUIRED)
ign_find_package(gz-fuel_tools8 REQUIRED)
ign_find_package(gz-sim7 REQUIRED)
ign_find_package(gz-gui7 REQUIRED)
ign_find_package(gz-launch6 REQUIRED)
ign_find_package(gz-math7 REQUIRED COMPONENTS eigen3)
ign_find_package(gz-msgs9 REQUIRED)
ign_find_package(gz-physics6 REQUIRED)
ign_find_package(gz-plugin2 REQUIRED)
ign_find_package(gz-rendering7 REQUIRED)
ign_find_package(gz-sensors7 REQUIRED)
ign_find_package(gz-transport12 REQUIRED)
ign_find_package(gz-utils2 REQUIRED)
ign_find_package(sdformat13 REQUIRED)

if(build_warnings)
Expand Down