Skip to content

Commit a343560

Browse files
committed
Debug
1 parent 9d5a34c commit a343560

File tree

1 file changed

+40
-40
lines changed

1 file changed

+40
-40
lines changed

.github/workflows/ci.yml

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
env:
20-
- ROBOT_MODEL: 'ur5'
21-
URSIM_VERSION: '3.14.3'
22-
PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/cb3'
23-
- ROBOT_MODEL: 'ur5e'
24-
URSIM_VERSION: '5.9.4'
25-
PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/e-series'
26-
- ROBOT_MODEL: 'ur20'
27-
URSIM_VERSION: 'latest'
28-
PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/e-series'
20+
#- ROBOT_MODEL: 'ur5'
21+
#URSIM_VERSION: '3.14.3'
22+
#PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/cb3'
23+
#- ROBOT_MODEL: 'ur5e'
24+
#URSIM_VERSION: '5.9.4'
25+
#PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/e-series'
26+
#- ROBOT_MODEL: 'ur20'
27+
#URSIM_VERSION: 'latest'
28+
#PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/e-series'
2929
- ROBOT_MODEL: 'ur5e'
3030
URSIM_VERSION: '10.7.0'
3131
PROGRAM_FOLDER: 'tests/resources/dockerursim/programs/polyscopex'
@@ -40,38 +40,38 @@ jobs:
4040
ROBOT_MODEL: ${{matrix.env.ROBOT_MODEL}}
4141
URSIM_VERSION: ${{matrix.env.URSIM_VERSION}}
4242
PROGRAM_FOLDER: ${{matrix.env.PROGRAM_FOLDER}}
43-
- name: configure
44-
run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1 -DINTEGRATION_TESTS=1 -DWITH_ASAN=ON
45-
env:
46-
CXXFLAGS: -g -O2 -fprofile-arcs -ftest-coverage
47-
CFLAGS: -g -O2 -fprofile-arcs -ftest-coverage
48-
LDFLAGS: -fprofile-arcs -ftest-coverage
49-
- name: build
50-
run: cmake --build build --config Debug
51-
- name: Create folder for test artifacts
52-
run: mkdir -p test_artifacts
53-
- name: test
54-
run: cd build && ctest --output-on-failure --output-junit junit.xml
55-
- name: Upload test results to Codecov
56-
if: ${{ !cancelled() }}
57-
uses: codecov/test-results-action@v1
58-
with:
59-
token: ${{ secrets.CODECOV_TOKEN }}
60-
fail_ci_if_error: true
61-
- name: run examples
62-
run: ./run_examples.sh "192.168.56.101" 1
63-
- name: install gcovr
64-
run: sudo apt-get install -y gcovr
65-
- name: gcovr
66-
run: cd build && gcovr -r .. --gcov-ignore-parse-errors negative_hits.warn_once_per_file
67-
- name: Upload coverage to Codecov
68-
uses: codecov/codecov-action@v5
69-
with:
70-
fail_ci_if_error: true
71-
token: ${{ secrets.CODECOV_TOKEN }}
72-
flags: ${{ matrix.env.ROBOT_MODEL }}-${{ matrix.env.URSIM_VERSION }}
43+
#- name: configure
44+
#run: mkdir build && cd build && cmake .. -DBUILDING_TESTS=1 -DINTEGRATION_TESTS=1 -DWITH_ASAN=ON
45+
#env:
46+
#CXXFLAGS: -g -O2 -fprofile-arcs -ftest-coverage
47+
#CFLAGS: -g -O2 -fprofile-arcs -ftest-coverage
48+
#LDFLAGS: -fprofile-arcs -ftest-coverage
49+
#- name: build
50+
#run: cmake --build build --config Debug
51+
#- name: Create folder for test artifacts
52+
#run: mkdir -p test_artifacts
53+
#- name: test
54+
#run: cd build && ctest --output-on-failure --output-junit junit.xml
55+
#- name: Upload test results to Codecov
56+
#if: ${{ !cancelled() }}
57+
#uses: codecov/test-results-action@v1
58+
#with:
59+
#token: ${{ secrets.CODECOV_TOKEN }}
60+
#fail_ci_if_error: true
61+
#- name: run examples
62+
#run: ./run_examples.sh "192.168.56.101" 1
63+
#- name: install gcovr
64+
#run: sudo apt-get install -y gcovr
65+
#- name: gcovr
66+
#run: cd build && gcovr -r .. --gcov-ignore-parse-errors negative_hits.warn_once_per_file
67+
#- name: Upload coverage to Codecov
68+
#uses: codecov/codecov-action@v5
69+
#with:
70+
#fail_ci_if_error: true
71+
#token: ${{ secrets.CODECOV_TOKEN }}
72+
#flags: ${{ matrix.env.ROBOT_MODEL }}-${{ matrix.env.URSIM_VERSION }}
7373
- name: Generate URSim log files
74-
if: always() && ${{ matrix.env.URSIM_VERSION != '10.7.0' }}
74+
if: always() && matrix.env.URSIM_VERSION != '10.7.0'
7575
run: |
7676
nc -q 1 192.168.56.101 29999 <<END
7777
saveLog

0 commit comments

Comments
 (0)