From 2e343d9b3fb79b4d97c9433bfbbb5a8c642b0687 Mon Sep 17 00:00:00 2001 From: Byeong-gil Jun Date: Mon, 20 Nov 2023 21:20:03 +0900 Subject: [PATCH] Add a line to build a docker image for the RTI --- .github/actions/install-rti/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/install-rti/install.sh b/.github/actions/install-rti/install.sh index f3560f0529..3d88303c2e 100755 --- a/.github/actions/install-rti/install.sh +++ b/.github/actions/install-rti/install.sh @@ -1,5 +1,6 @@ #!/bin/bash cd core/src/main/resources/lib/c/reactor-c/core/federated/RTI +docker build -t rti:rti -f rti.Dockerfile ../../../core/ mkdir build cd build if [[ "$OSTYPE" == "darwin"* ]]; then @@ -7,4 +8,4 @@ if [[ "$OSTYPE" == "darwin"* ]]; then fi cmake -DAUTH=ON ../ make -sudo make install +sudo make install \ No newline at end of file