Skip to content

Commit

Permalink
Add check that windows build works fine and fix build string (#211)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] authored Apr 9, 2024
2 parents 7f401f3 + 1e30497 commit 9d22908
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .ci_support/win_64_GZ_CLI_NAME_VARIANTgzcompatname.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ c_compiler:
- vs2019
c_stdlib:
- vs
c_stdlib_version:
- '2019'
channel_sources:
- conda-forge
channel_targets:
Expand Down
2 changes: 2 additions & 0 deletions .ci_support/win_64_GZ_CLI_NAME_VARIANTorigname.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ c_compiler:
- vs2019
c_stdlib:
- vs
c_stdlib_version:
- '2019'
channel_sources:
- conda-forge
channel_targets:
Expand Down
12 changes: 10 additions & 2 deletions README.md

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

7 changes: 5 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "gazebo" %}
{% set version = "11.14.0" %}
{% set number = 11 %}
{% set number = 12 %}

{% if GZ_CLI_NAME_VARIANT == "origname" %}
{% set number = number + 200 %}
Expand All @@ -23,7 +23,7 @@ build:
number: {{ number }}
run_exports:
- {{ pin_subpackage('gazebo', max_pin='x') }}
string: {{ GZ_CLI_NAME_VARIANT }}{{ PKG_HASH }}_{{ PKG_BUILDNUM }}
string: {{ GZ_CLI_NAME_VARIANT }}h{{ PKG_HASH }}_{{ PKG_BUILDNUM }}

requirements:
build:
Expand Down Expand Up @@ -159,6 +159,9 @@ test:
- gzserver --version | grep "Gazebo multi-robot simulator, version" # [unix]
- gzclient --version | grep "Gazebo multi-robot simulator, version" # [unix]
- gazebo --version | grep "Gazebo multi-robot simulator, version" # [unix]
# We do not try to check the gz11 help output as it prints on stderr and not stdout
# For some reason this fails on aarch64 with Error setting socket option (IP_MULTICAST_IF) error
- gz11 help # [not aarch64]

about:
home: http://classic.gazebosim.org/
Expand Down

0 comments on commit 9d22908

Please sign in to comment.