Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Inside the Actor Testing Framework test directory there is a dedicated directory for building native actor code instructions called: native_codes_build/. By default, there is a build_actor.sh script  script that should provide step-by-step instructions on how to build an actor. For example, it could be a simple make command, but first you need to change the directory your codes are in, basically it should be done the same way you build the codes from the root directory.

Code Block
languagebash
tests
├── native_codes_build
│   └── build_actor.sh	# <-- This file
.
.
.

 Run Actor

Inside the Actor Testing Framework test directory there is a dedicated directory to run the actor code, usually it will be a workflow, called main_code_run/. By default, there is a run_actor.sh script that should provide step-by-step instructions for starting an actor or executing a workflow. Basically, it should reflect the same way you run actor from the root directory.

Code Block
languagebash
tests 
├── main_code_run
│   └── run_actor.sh	# <-- This file
.
.
.

...