Skip to content

Commit e236c31

Browse files
authored
Fix commit in zoo_helper --version
1 parent a2bda00 commit e236c31

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/zoo_helper.workflow.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343
pip3 install jinja2
4444
4545
- name: Configure project
46-
run: cmake -S . -B build -DDEPTHAI_ENABLE_CURL=ON -DCMAKE_BUILD_TYPE=MinSizeRel
46+
run: |
47+
git config --global --add safe.directory $(pwd)
48+
cmake -S . -B build -DDEPTHAI_ENABLE_CURL=ON -DCMAKE_BUILD_TYPE=MinSizeRel
4749
4850
- name: Build zoo_helper
4951
run: cmake --build build --target zoo_helper --parallel 4
@@ -98,12 +100,12 @@ jobs:
98100
pip3 install ninja # ninja is needed for cmake on arm64
99101
100102
- name: Configure project
101-
run: cmake -S . -B build -DDEPTHAI_ENABLE_CURL=ON -DCMAKE_BUILD_TYPE=MinSizeRel
102-
103-
- name: Build zoo_helper
104103
run: |
105104
git config --global --add safe.directory $(pwd)
106-
cmake --build build --target zoo_helper --parallel 4
105+
cmake -S . -B build -DDEPTHAI_ENABLE_CURL=ON -DCMAKE_BUILD_TYPE=MinSizeRel
106+
107+
- name: Build zoo_helper
108+
run: cmake --build build --target zoo_helper --parallel 4
107109

108110
- name: Strip zoo_helper
109111
run: strip ./build/zoo_helper # Shrinks the size of the binary a little bit by removing symbols: https://www.man7.org/linux/man-pages/man1/strip.1.html

0 commit comments

Comments
 (0)