We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61e2e86 commit d13bd7bCopy full SHA for d13bd7b
1 file changed
.github/workflows/ci.yml
@@ -37,9 +37,21 @@ 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
44
+<<<<<<< HEAD
45
pip install catkin_pkg colcon-common-extensions lark "empy<4"
46
+=======
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
+>>>>>>> 267a735 (fix humble dependencies issue in ci (#347))
55
56
- name: Build sample - int32_publisher
57
0 commit comments