Skip to content

Commit

Permalink
specify to use local RTI image
Browse files Browse the repository at this point in the history
  • Loading branch information
Depetrol committed Aug 2, 2024
1 parent fd7ab70 commit 3c97eec
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
4 changes: 3 additions & 1 deletion test/Python/src/docker/FilesPropertyContainerized.lf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
target Python {
files: "../include/hello.py",
docker: true
docker: {
rti-image: "rti:local"
}
}

preamble {=
Expand Down
4 changes: 3 additions & 1 deletion test/Python/src/docker/HelloWorldContainerized.lf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
target Python {
docker: true
docker: {
rti-image: "rti:local"
}
}

import HelloWorld2 from "../HelloWorld.lf"
Expand Down
4 changes: 3 additions & 1 deletion test/Python/src/docker/PingPongContainerized.lf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
*/
target Python {
fast: true,
docker: true
docker: {
rti-image: "rti:local"
}
}

import Ping from "../PingPong.lf"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ target Python {
timeout: 5 sec,
logging: DEBUG,
coordination: centralized,
docker: true
docker: {
rti-image: "rti:local"
}
}

import Count from "../../lib/Count.lf"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
target Python {
timeout: 1 sec,
coordination: centralized,
docker: true
docker: {
rti-image: "rti:local"
}
}

import Source, Destination from "../../federated/DistributedMultiport.lf"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
target Python {
coordination: centralized,
docker: true
docker: {
rti-image: "rti:local"
}
}

import A, B from "../../federated/DistributedSendClass.lf"
Expand Down

0 comments on commit 3c97eec

Please sign in to comment.