We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7112d commit fec2fdeCopy full SHA for fec2fde
1 file changed
.github/workflows/ci.yml
@@ -40,9 +40,17 @@ jobs:
40
41
- name: Dependencies
42
shell: bash
43
+ env:
44
+ TARGET_BRANCH: ${{ inputs.branch || github.base_ref || github.ref_name }}
45
run: |
46
. $IDF_PATH/export.sh
- pip install catkin_pkg colcon-common-extensions lark
47
+ echo "::notice::TARGET_BRANCH=$TARGET_BRANCH"
48
+ if [ "$TARGET_BRANCH" = "humble" ]; then
49
+ python3 -m pip uninstall -y em empy || true
50
+ python3 -m pip install catkin_pkg colcon-common-extensions lark "empy==3.3.4"
51
+ else
52
+ python3 -m pip install catkin_pkg colcon-common-extensions lark
53
+ fi
54
55
- name: Build sample - int32_publisher
56
0 commit comments