Skip to content

Commit

Permalink
actions/upload-artifact v2 -> v4
Browse files Browse the repository at this point in the history
  • Loading branch information
kzangeli committed Sep 11, 2024
1 parent 7694859 commit 52c8bc8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
outputs: type=docker,dest=/tmp/test-image.tar

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-image
path: /tmp/test-image.tar
Expand Down
21 changes: 13 additions & 8 deletions docker/build-ubi/04.install-fastdds.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ yum -y --nogpgcheck install https://dl.fedoraproject.org/pub/fedora/linux/releas
mkdir /opt/Fast-DDS
cd /opt/Fast-DDS


#
# foonathan_memory_vendor
#
Expand All @@ -37,9 +38,10 @@ cd foonathan_memory_vendor
git checkout master
cd build

cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_SHARED_LIBS=ON
cmake --build . --target install


#
# CDR
#
Expand All @@ -49,9 +51,10 @@ mkdir Fast-CDR/build
cd Fast-CDR
git checkout master
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake ..
cmake --build . --target install


#
# RTPS
#
Expand All @@ -67,9 +70,10 @@ mkdir build
# nl=$(grep -n "namespace eprosima" $file_bug | awk -F':' '{print $1 ; exit 0}')
# sed -i "${nl}i #include <unistd.h>\n#include <sys/syscall.h>\n#define gettid() syscall(SYS_gettid)\n" $file_bug

cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake ..
cmake --build . --target install


#
# DDS Dev Utils
#
Expand All @@ -78,11 +82,12 @@ git clone https://github.com/eProsima/dev-utils.git
cd dev-utils
git checkout main
mkdir build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake ..
cmake --build . --target install


#
# DDS Pipe
# DDS Pipe (3 packages)
#
cd /opt/Fast-DDS
git clone https://github.com/eProsima/ddspipe_core.git
Expand All @@ -92,17 +97,17 @@ git clone https://github.com/eProsima/ddspipe_yaml.git
cd ddspipe_core
git checkout main
mkdir build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake ..
cmake --build . --target install

cd ddspipe_participants
git checkout main
mkdir build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake ..
cmake --build . --target install

cd ddspipe_yaml
git checkout main
mkdir build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_SHARED_LIBS=ON
cmake ..
cmake --build . --target install

0 comments on commit 52c8bc8

Please sign in to comment.