Skip to content

Commit

Permalink
Fix nightly job and move 2.6.x to weekly CI (#845)
Browse files Browse the repository at this point in the history
* Refs #21256: Fix nightly job

Signed-off-by: JesusPoderoso <[email protected]>

* Refs #21256: Move 2.6.x related job to weekly

Signed-off-by: JesusPoderoso <[email protected]>

---------

Signed-off-by: JesusPoderoso <[email protected]>
  • Loading branch information
JesusPoderoso authored Jul 5, 2024
1 parent 5eaec7d commit dbeb633
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/nightly-ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
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-image: 'ubuntu-22.04'
os-version: 'ubuntu-22.04'
label: 'nightly-ubuntu-ci-master'
fastdds-docs-branch: 'master'
fastdds-branch: 'master'
Expand All @@ -25,7 +25,7 @@ jobs:
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-image: 'ubuntu-22.04'
os-version: 'ubuntu-22.04'
label: '-nightly-ubuntu-ci-2.14.x'
fastdds-docs-branch: '2.14.x'
fastdds-branch: '2.14.x'
Expand All @@ -39,7 +39,7 @@ jobs:
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-image: 'ubuntu-22.04'
os-version: 'ubuntu-22.04'
label: '-nightly-ubuntu-ci-2.13.x'
fastdds-docs-branch: '2.13.x'
fastdds-branch: '2.13.x'
Expand All @@ -53,25 +53,11 @@ jobs:
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-image: 'ubuntu-22.04'
os-version: 'ubuntu-22.04'
label: '-nightly-ubuntu-ci-2.10.x'
fastdds-docs-branch: '2.10.x'
fastdds-branch: '2.10.x'
fastdds-python-branch: '1.2.x'
run-build: true
run-tests: true
use-ccache: false

nightly-ubuntu-ci-2_6_x:
uses: eProsima/Fast-DDS-docs/.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-image: 'ubuntu-20.04'
label: '-nightly-ubuntu-ci-2.6.x'
fastdds-docs-branch: '2.6.x'
fastdds-branch: '2.6.x'
fastdds-python-branch: '1.0.x'
run-build: true
run-tests: true
use-ccache: false
21 changes: 21 additions & 0 deletions .github/workflows/weekly-ubuntu-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Fast DDS Docs Ubuntu CI (weekly)

on:
workflow_dispatch:
schedule:
- cron: '0 * * * 1' # Run at minute 0 on Monday

jobs:
weekly-ubuntu-ci-2_6_x:
uses: eProsima/Fast-DDS-docs/.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-20.04'
label: '-weekly-ubuntu-ci-2.6.x'
fastdds-docs-branch: '2.6.x'
fastdds-branch: '2.6.x'
fastdds-python-branch: '1.0.x'
run-build: true
run-tests: true
use-ccache: false

0 comments on commit dbeb633

Please sign in to comment.