Hello
I use poco very intensively and sometimes I meet a problem: I need some setting, setup step before project start, but it can't be done with before_script because it run in a docker container. So I think good idea a new block (same level with before_script) which can run a script on hostmachine (for example a shell script whitin the current project, or any other command). But I know, it can run on Windows/Mac/Linux, so each command need to mark with OS selector:
# already exist feature
before_script:
- ./script_in_container.sh
# the new feature
os_executor:
- ./initial_setup.bat:win
- ./initial_setup.sh:osx
- ./initial_setup.sh:linux
What do you think about it? it's like a before start hook - later it can be extended.
Hello
I use poco very intensively and sometimes I meet a problem: I need some setting, setup step before project start, but it can't be done with before_script because it run in a docker container. So I think good idea a new block (same level with before_script) which can run a script on hostmachine (for example a shell script whitin the current project, or any other command). But I know, it can run on Windows/Mac/Linux, so each command need to mark with OS selector:
What do you think about it? it's like a
before start hook- later it can be extended.