Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .github/actions/fetch-fastdds_python-repos/action.yml

This file was deleted.

229 changes: 0 additions & 229 deletions .github/workflows/build_and_test.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/config/build.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
names:
fastdds:
cmake-args:
- "-DSECURITY=ON"
- "-DLOG_CONSUMER_DEFAULT=STDOUT"
10 changes: 10 additions & 0 deletions .github/workflows/config/ubuntu_test.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
names:
fastdds_python:
cmake-args:
- "-DBUILD_TESTING=ON"
- "-DBUILD_DOCUMENTATION=ON"
ctest-args: [
"--repeat", "until-pass:3",
"--timeout", "300",
"--label-exclude", "xfail"
]
9 changes: 9 additions & 0 deletions .github/workflows/config/windows_test.meta
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
names:
fastdds_python:
cmake-args:
- "-DBUILD_TESTING=ON"
ctest-args: [
"--repeat", "until-pass:3",
"--timeout", "300",
"--label-exclude", "xfail"
]
9 changes: 5 additions & 4 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
# .github/workflows/mirror.yml
name: Mirror
on:
push:
branches:
- 'main'
- '1.4.x'
jobs:
mirror_job:
runs-on: ubuntu-latest
name: Mirror main branch to compatible minor version branches
name: Mirror 1.4.x branch to compatible version branches
strategy:
fail-fast: false
matrix:
dest_branch:
- '1.4.x'
- '1.x'
steps:
- name: Mirror action step
id: mirror
uses: eProsima/eProsima-CI/external/mirror-branch-action@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
source: 'main'
source: '1.4.x'
dest: ${{ matrix.dest_branch }}
Loading