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