Skip to content

Commit

Permalink
upgrade to FastRTPS v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex031544 committed Jun 4, 2020
1 parent 4a7c5ec commit 05c0688
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dockerhub/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG TAG_FASTRTPS='v2.0.0'
ARG TAG_FASTCDR='v1.0.14'
ARG TAG_FASTRTPSGEN='v1.0.4'
ARG TAG_FOONATHAN='v1.0.0'
ARG NPROC=16
ARG NPROC=1


################################################################################
Expand Down
2 changes: 1 addition & 1 deletion dockerhub/Dockerfile.example
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG TAG_FASTRTPS='v2.0.0'
ARG TAG_FASTCDR='v1.0.14'
ARG TAG_FASTRTPSGEN='v1.0.4'
ARG TAG_FOONATHAN='v1.0.0'
ARG NPROC=16
ARG NPROC=1


################################################################################
Expand Down
2 changes: 1 addition & 1 deletion dockerhub/Dockerfile.runtime
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG TAG_FASTRTPS='v2.0.0'
ARG TAG_FASTCDR='v1.0.14'
ARG TAG_FASTRTPSGEN='v1.0.4'
ARG TAG_FOONATHAN='v1.0.0'
ARG NPROC=16
ARG NPROC=1


################################################################################
Expand Down
3 changes: 3 additions & 0 deletions gen_dockerfiles_for_docker_hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ def get_dependencies(targets_available, depends):
head = []
buildTarget = BuildTarget(None, None)
for line in dockerfileLines:
if 'NPROC' in line:
line = line.split('=')[0] + '=1'

if '###' in line:
break
head.append(line)
Expand Down

0 comments on commit 05c0688

Please sign in to comment.