-
Notifications
You must be signed in to change notification settings - Fork 774
130 lines (113 loc) · 4.39 KB
/
nightly-ubuntu-detect-flaky.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
name: Detect flakiness Ubuntu workflow
on:
schedule:
- cron: '0 1 * * *'
pull_request:
types: [opened, synchronize]
workflow_dispatch:
inputs:
label:
description: 'ID associated to the workflow'
required: false
type: string
colcon-args:
description: 'Extra arguments for colcon cli'
required: false
type: string
defaults:
run:
shell: bash
jobs:
test-ci:
runs-on: 'ubuntu-22.04'
strategy:
fail-fast: false
matrix:
fastdds-branch:
- 'feature/detect_flaky_tests'
cmake-build-type:
- 'RelWithDebInfo'
steps:
- name: Sync eProsima/Fast-DDS repository
uses: eProsima/eProsima-CI/external/checkout@v0
with:
path: src/fastdds
ref: ${{ matrix.fastdds-branch }}
- name: Get minimum supported version of CMake
uses: eProsima/eProsima-CI/external/get-cmake@v0
with:
cmakeVersion: '3.22.6'
- name: Install apt dependencies
uses: eProsima/eProsima-CI/ubuntu/install_apt_packages@v0
with:
packages: libasio-dev libtinyxml2-dev libssl-dev
update: false
upgrade: false
- name: Install colcon
uses: eProsima/eProsima-CI/ubuntu/install_colcon@v0
- name: Install Python dependencies
run: |
pip install pytest pytest-json-report requests vcstool lxml junitparser pandas numpy seaborn
- name: Setup CCache
uses: eProsima/eProsima-CI/external/setup-ccache-action@v0
- name: Fetch Fast DDS dependencies
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
with:
vcs_repos_file: ${{ github.workspace }}/src/fastdds/fastdds.repos
destination_workspace: src
skip_existing: 'true'
- name: Fetch googletest
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
with:
vcs_repos_file: ${{ github.workspace }}/src/fastdds/.github/workflows/config/ci.repos
destination_workspace: src
skip_existing: 'true'
- name: Colcon build
continue-on-error: false
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
with:
colcon_meta_file: ${{ github.workspace }}/src/fastdds/.github/workflows/config/ci.meta
colcon_build_args: ${{ inputs.colcon-args }}
cmake_args: -DSECURITY=ON
cmake_args_default: -DCMAKE_CXX_FLAGS="-Werror -Wall -Wextra -Wpedantic -Wunused-value -Woverloaded-virtual"
cmake_build_type: ${{ matrix.cmake-build-type }}
workspace: ${{ github.workspace }}
- name: Set current date as env variable
id: date
run: |
echo "TODAY=$(date +'%Y-%m-%dT%H-%M-%S')" >> $GITHUB_ENV
echo "NOW=$(date +'%Y-%m-%dT%H:%M:%S')" >> $GITHUB_ENV
- name: Colcon test
run: |
cd ${{ github.workspace }}
test_results_file="${{ github.workspace }}/test_results-$TODAY.xml"
colcon test --packages-select=fastdds --event-handlers=console_direct+ --ctest-args --timeout=300 --label-exclude="xfail"
# Translate CTest XML reports to jUnit
if [ ! -f ${test_results_file} ]
then
echo "::group::Translating test report to jUnit specific format"
python3 ${{ github.workspace }}/src/fastdds/.github/resources/ctest2junit.py \
--build-dir ${{ github.workspace }}/build/fastdds \
--xslt ${{ github.workspace }}/src/fastdds/.github/resources/ctest-to-junit-reducted.xsl \
--output-junit ${test_results_file} \
--timestamp "$NOW"
echo "::endgroup::"
fi
- name: Download previous test results with plugin
if: always()
uses: dawidd6/action-download-artifact@v2
with:
workflow: nightly-ubuntu-detect-flaky.yml
name: test-results-all
workflow_conclusion: completed
- name: Flaky test analysis on [window-size] runs history
id: flaky_analysis
run: |
python ${{ github.workspace }}/src/fastdds/.github/resources/check_flakes.py --junit-files=. --grouping-option=runs --window-size=6 --window-count=1 --output-file=$GITHUB_STEP_SUMMARY
- name: Upload test results
if: always()
uses: actions/upload-artifact@v2
with:
name: test-results-all
path: |
*.xml