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

Bump version to 6.0.0 #17

Merged
merged 10 commits into from
Oct 10, 2021
Merged
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
10 changes: 5 additions & 5 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ conda_forge_output_validation: true
bot:
abi_migration_branches:
- "v4"
- "v5"
2 changes: 1 addition & 1 deletion recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ cmake --build . --config Release --target install
if errorlevel 1 exit 1

:: Test.
ctest -C Release
ctest -VV -C Release -E "UNIT_Lidar_TEST|UNIT_Camera_TEST|INTEGRATION"
if errorlevel 1 exit 1
4 changes: 2 additions & 2 deletions recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cmake --build . --config Release
cmake --build . --config Release --target install

if [[ ${HOST} =~ .*darwin.* ]]; then
ctest --output-on-failure -C Release -E "UNIT_Lidar_TEST|UNIT_Camera_TEST|INTEGRATION_camera_plugin|INTEGRATION_depth_camera_plugin|INTEGRATION_gpu_lidar_sensor_plugin|INTEGRATION_rgbd_camera_plugin|INTEGRATION_thermal_camera_plugin"
ctest -VV --output-on-failure -C Release -E "UNIT_Lidar_TEST|UNIT_Camera_TEST|INTEGRATION"
else
ctest --output-on-failure -C Release
ctest -VV --output-on-failure -C Release
fi
14 changes: 7 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set component_name = "sensors" %}
{% set base_name = "libignition-" + component_name %}
{% set version = "5_5.0.0" %}
{% set version = "6_6.0.0" %}
{% set version_package = version.split('_')[1] %}
{% set major_version = version.split('_')[0] %}
{% set name = base_name + major_version %}
Expand All @@ -11,10 +11,10 @@ package:

source:
- url: https://github.com/ignitionrobotics/ign-{{ component_name }}/archive/ignition-{{ component_name }}{{ version }}.tar.gz
sha256: 2484b82d2122633956fdf3fab9e8a41fd8c18de3055d059ec461c9b9153c3257
sha256: ad9da18d8d1316bccfe86e943c3f66b806cf3614bcf79479fc86c94a0c3680de

build:
number: 4
number: 0
run_exports:
- {{ pin_subpackage(name, max_pin='x') }}

Expand All @@ -30,11 +30,11 @@ requirements:
- libprotobuf
- libignition-math6
- libignition-common4
- libignition-transport10
- libignition-rendering5
- libignition-msgs7
- libignition-transport11
- libignition-rendering6
- libignition-msgs8
- libignition-plugin1
- libsdformat11
- libsdformat12
- libarchive # [osx]
- ogre {{ ogre }}
run:
Expand Down