Skip to content

Commit

Permalink
Update lingua-franca submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh committed Aug 2, 2024
1 parent 86140dc commit 4e2e4c0
Show file tree
Hide file tree
Showing 28 changed files with 8,206 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lingua-franca
Submodule lingua-franca updated 45 files
+36 −0 .github/actions/push-rti-docker/action.yml
+26 −26 .github/workflows/c-zephyr-tests.yml
+28 −0 .github/workflows/rti-docker.yml
+5 −0 .gitignore
+1 −1 core/src/integrationTest/java/org/lflang/tests/runtime/PythonTest.java
+3 −1 core/src/main/java/org/lflang/LinguaFranca.xtext
+10 −3 core/src/main/java/org/lflang/federated/extensions/CExtension.java
+34 −0 core/src/main/java/org/lflang/federated/extensions/PythonExtension.java
+14 −0 core/src/main/java/org/lflang/federated/generator/FedASTUtils.java
+12 −1 core/src/main/java/org/lflang/federated/generator/FedUtils.java
+118 −0 core/src/main/java/org/lflang/federated/serialization/FedCustomPythonSerialization.java
+7 −1 core/src/main/java/org/lflang/federated/serialization/SupportedSerializers.java
+8 −7 core/src/main/java/org/lflang/generator/c/CCompiler.java
+6 −4 core/src/main/java/org/lflang/generator/c/CGenerator.java
+21 −2 core/src/main/java/org/lflang/generator/docker/DockerComposeGenerator.java
+9 −0 core/src/main/java/org/lflang/generator/python/PythonGenerator.java
+2 −1 core/src/main/java/org/lflang/generator/python/PythonReactorGenerator.java
+14 −5 core/src/main/java/org/lflang/target/property/DockerProperty.java
+1 −5 core/src/main/java/org/lflang/util/LFCommand.java
+20 −10 core/src/main/java/org/lflang/validation/LFValidator.java
+2 −0 core/src/main/kotlin/org/lflang/generator/cpp/CppPreambleGenerator.kt
+0 −6 core/src/main/kotlin/org/lflang/generator/cpp/CppStandaloneCmakeGenerator.kt
+3 −8 core/src/main/kotlin/org/lflang/generator/cpp/CppStandaloneGenerator.kt
+1 −1 core/src/main/resources/lib/c/reactor-c
+1 −1 core/src/main/resources/lib/cpp/reactor-cpp
+1 −1 core/src/main/resources/org/lflang/StringsBundle.properties
+1 −1 gradle.properties
+3 −0 test/C/src/PreambleInherited.lf
+53 −0 test/Cpp/src/target/TimeExpression.lf
+18 −0 test/Python/src/PreambleInherited.lf
+13 −0 test/Python/src/docker/DockerComposeConfig.docker.yml
+56 −0 test/Python/src/docker/DockerComposeConfig.lf
+3 −1 test/Python/src/docker/FilesPropertyContainerized.lf
+3 −1 test/Python/src/docker/HelloWorldContainerized.lf
+3 −1 test/Python/src/docker/PingPongContainerized.lf
+3 −1 test/Python/src/docker/federated/DistributedCountContainerized.lf
+3 −1 test/Python/src/docker/federated/DistributedMultiportContainerized.lf
+3 −1 test/Python/src/docker/federated/DistributedSendClassContainerized.lf
+0 −0 test/Python/src/docker/federated/failing/DistributedDoublePortContainerized.lf
+0 −0 test/Python/src/docker/federated/failing/DistributedStopDecentralizedContainerized.lf
+68 −0 test/Python/src/federated/Dataflow.lf
+70 −0 test/Python/src/serialization/CustomSerializer.lf
+1 −0 test/Python/src/serialization/pickle_serializer/pickle_serializer/__init__.py
+7 −0 test/Python/src/serialization/pickle_serializer/pickle_serializer/serializer.py
+8 −0 test/Python/src/serialization/pickle_serializer/setup.py
Loading

0 comments on commit 4e2e4c0

Please sign in to comment.