Skip to content

Commit 2449fe8

Browse files
authored
fixed ci configuration
1 parent fa75baf commit 2449fe8

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/ci.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,13 @@ jobs:
3737
echo "${DEPENDENCIES_DIR}/install/bin" >> $GITHUB_PATH
3838
echo "YARP_DATA_DIRS=${DEPENDENCIES_DIR}/install/share/yarp:${DEPENDENCIES_DIR}/install/share/iCub:${DEPENDENCIES_DIR}/install/share/CER:${DEPENDENCIES_DIR}/install/share/navigation:${DEPENDENCIES_DIR}/install/share/ICUBcontrib" >> $GITHUB_ENV
3939
40-
- name: Configure
40+
- name: Configure Tests
4141
shell: bash
4242
run: |
4343
cd ./tests/dry-run/
44-
./configure.sh
44+
./configure-tests.sh
4545
46-
- name: Install
47-
shell: bash
48-
run: |
49-
cd ./tests/dry-run/build
50-
cmake --build . --config Release --target install
51-
52-
- name: Test
46+
- name: Tests
5347
shell: bash
5448
run: |
5549
cd ./tests/dry-run/build

tests/dry-run/configure.sh renamed to tests/dry-run/configure-tests.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ mkdir -p build && cd build
1010
cmake -DCMAKE_PREFIX_PATH=${DEPENDENCIES_DIR}/install \
1111
-DCMAKE_INSTALL_PREFIX=${DEPENDENCIES_DIR}/install \
1212
-DBUILD_TESTING:BOOL=ON \
13-
-DINSTALL_ALL_ROBOTS:BOOL=ON ../../../
13+
-DINSTALL_ALL_ROBOTS:BOOL=ON ../../../
14+
cmake --build . --config Release --target install

0 commit comments

Comments
 (0)