Skip to content

Commit d334f83

Browse files
Fix docker build
Signed-off-by: Eugenio Collado <eugeniocollado@eprosima.com>
1 parent 8ee4c80 commit d334f83

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/docker/ddsenabler/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ RUN echo "fastcdr branch: <${fastcdr_branch}>" && \
5555
RUN mkdir src && \
5656
wget https://raw.githubusercontent.com/eProsima/FIWARE-DDS-Enabler/${ddsenabler_branch}/ddsenabler.repos && \
5757
vcs import src < ddsenabler.repos && \
58-
cd src/fastcdr && git checkout ${fastcdr_branch} && cd ../.. && \
59-
cd src/fastdds && git checkout ${fastdds_branch} && cd ../.. && \
60-
cd src/dev-utils && git checkout ${devutils_branch} && cd ../.. && \
61-
cd src/ddspipe && git checkout ${ddspipe_branch} && cd ../.. && \
62-
cd src/ddsenabler && git checkout ${ddsenabler_branch} && cd ../.. && \
63-
cp -r src/fastdds/examples/cpp/configuration src/. && \
58+
cd src/Fast-CDR && git checkout ${fastcdr_branch} && cd ../.. && \
59+
cd src/Fast-DDS && git checkout ${fastdds_branch} && cd ../.. && \
60+
cd src/Dev-Utils && git checkout ${devutils_branch} && cd ../.. && \
61+
cd src/DDS-Pipe && git checkout ${ddspipe_branch} && cd ../.. && \
62+
cd src/DDS-Enabler && git checkout ${ddsenabler_branch} && cd ../.. && \
63+
cp -r src/Fast-DDS/examples/cpp/configuration src/. && \
6464
colcon build --packages-skip ddsenabler ddsenabler_docs --event-handlers console_direct+ --cmake-args -DLOG_INFO=ON -DSECURITY=ON && \
6565
colcon build --packages-select ddsenabler --event-handlers console_direct+ --cmake-args -DLOG_INFO=ON -DCOMPILE_EXAMPLES=ON
6666

.github/docker/ddsenabler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
In order to build this docker image, use command in current directory:
44

55
```sh
6-
docker build --rm -t ddsenabler_test:some_tag --build-arg "fastcdr_branch=master" --build-arg "fastdds_branch=master" --build-arg "devutils_branch=main" --build-arg "ddspipe_branch=tmp/dds_enabler" --build-arg "ddsenabler_branch=CI" .
6+
docker build --rm -t ddsenabler_test:some_tag --build-arg "fastcdr_branch=master" --build-arg "fastdds_branch=master" --build-arg "devutils_branch=main" --build-arg "ddspipe_branch=main" --build-arg "ddsenabler_branch=main" .
77
```

0 commit comments

Comments
 (0)