Skip to content

Commit 03c6677

Browse files
authored
Merge pull request #73 from s2e-systems/update-dust-dds-src
Update srcRs of DustDDS
2 parents 416a368 + 63c949e commit 03c6677

File tree

5 files changed

+429
-253
lines changed

5 files changed

+429
-253
lines changed

.github/workflows/ci_dustdds.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI DustDDS
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
paths:
7+
- 'srcRs/DustDDS/**'
8+
9+
jobs:
10+
create_bin_release:
11+
name: Create binary release
12+
runs-on: ubuntu-latest
13+
defaults:
14+
run:
15+
working-directory: srcRs/DustDDS
16+
steps:
17+
- name: Checkout sources
18+
uses: actions/checkout@v4
19+
- name: Build executable
20+
run: cargo build --package dust_dds_shape_main_linux --release
21+
- name: Rename executable
22+
run: |
23+
version=$( cargo tree --package dust_dds --depth 0 --prefix none | tr -d 'dust_dds v' )
24+
cp ./target/release/dust_dds_shape_main_linux ./dust_dds-${version}_shape_main_linux
25+
mkdir artifacts
26+
zip --junk-paths artifacts/dust_dds-${version}_shape_main_linux.zip ./dust_dds-${version}_shape_main_linux
27+
- name: Upload executable artifact
28+
uses: actions/upload-artifact@v4
29+
with:
30+
name: interoperability_executable
31+
path: srcRs/DustDDS/artifacts/

0 commit comments

Comments
 (0)