-
Notifications
You must be signed in to change notification settings - Fork 6
49 lines (45 loc) · 1.83 KB
/
nightly-ubuntu-ci.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
name: Fast DDS Discovery Server Ubuntu CI (nightly)
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
nightly-ubuntu-ci-master:
uses: eProsima/Discovery-Server/.github/workflows/reusable-ubuntu-ci.yml@master
with:
# It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket:
# https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job.
os-version: 'ubuntu-22.04'
label: 'nightly-ubuntu-ci-master'
discovery-server-branch: 'master'
fastdds-branch: 'master'
ctest-args: "-LE xfail"
run-build: true
run-tests: true
use-ccache: false
nightly-ubuntu-ci-v1_2_2:
uses: eProsima/Discovery-Server/.github/workflows/[email protected]
with:
# It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket:
# https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job.
os-version: 'ubuntu-22.04'
label: 'nightly-ubuntu-ci-v1.2.2-2.14.x'
discovery-server-branch: 'v1.2.2'
fastdds-branch: '2.14.x'
ctest-args: "-LE xfail"
run-build: true
run-tests: true
use-ccache: false
nightly-ubuntu-ci-v1_2_1:
uses: eProsima/Discovery-Server/.github/workflows/[email protected]
with:
# It would be desirable to have a matrix of ubuntu OS for this job, but due to the issue opened in this ticket:
# https://github.com/orgs/community/discussions/128118 , it has been set as a single OS job.
os-version: 'ubuntu-22.04'
label: 'nightly-ubuntu-ci-v1.2.1-2.10.x'
discovery-server-branch: 'v1.2.1'
fastdds-branch: '2.10.x'
ctest-args: "-LE xfail"
run-build: true
run-tests: true
use-ccache: false