forgejo-runner-act/pkg/runner
sillyguodong 9283cfc9b1 Fix container network issue (#56)
Follow: https://gitea.com/gitea/act_runner/pulls/184
Close https://gitea.com/gitea/act_runner/issues/177

#### changes:
- `act` create new networks only if the value of `NeedCreateNetwork` is true, and remove these networks at last. `NeedCreateNetwork` is passed by `act_runner`. 'NeedCreateNetwork' is true only if  `container.network` in the configuration file of the `act_runner` is empty.
- In the `docker create` phase, specify the network to which containers will connect. Because, if not specify , container will connect to `bridge` network which is created automatically by Docker.
  - If the network is user defined network ( the value of `container.network` is empty or `<custom-network>`.  Because, the network created by `act` is also user defined network.), will also specify alias by `--network-alias`. The alias of service is `<service-id>`. So we can be access service container by `<service-id>:<port>` in the steps of job.
- Won't try to `docker network connect ` network after `docker start` any more.
  - Because on the one hand,  `docker network connect` applies only to user defined networks, if try to `docker network connect host <container-name>` will return error.
  - On the other hand, we just specify network in the stage of `docker create`, the same effect can be achieved.
- Won't try to remove containers and networks berfore  the stage of `docker start`, because the name of these containers and netwoks won't be repeat.

Co-authored-by: Jason Song <i@wolfogre.com>
Reviewed-on: https://gitea.com/gitea/act/pulls/56
Reviewed-by: Jason Song <i@wolfogre.com>
Co-authored-by: sillyguodong <gedong_1994@163.com>
Co-committed-by: sillyguodong <gedong_1994@163.com>
2023-05-16 14:03:55 +08:00
..
res Add super-linter + fix lint issues (#650) 2021-05-03 09:52:03 -07:00
testdata Merge tag 'nektos/v0.2.45' 2023-05-04 17:45:53 +08:00
action.go Merge tag 'nektos/v0.2.45' 2023-05-04 17:45:53 +08:00
action_composite.go Merge tag 'nektos/v0.2.45' 2023-05-04 17:45:53 +08:00
action_test.go refactor: fix savestate in pre steps (#1466) 2022-12-15 17:08:31 +00:00
command.go Merge tag 'nektos/v0.2.45' 2023-05-04 17:45:53 +08:00
command_test.go refactor: fix savestate in pre steps (#1466) 2022-12-15 17:08:31 +00:00
container_mock_test.go chore: Remove obsolete Container.UpdateFromPath (#1631) 2023-02-16 16:11:26 +00:00
expression.go Support configuration variables (#43) 2023-04-19 15:22:56 +08:00
expression_test.go feat: Host environment (#1293) 2022-11-16 21:29:45 +00:00
job_executor.go Fix container network issue (#56) 2023-05-16 14:03:55 +08:00
job_executor_test.go feat: allow to spawn and run a local reusable workflow (#1423) 2022-12-15 16:45:22 +00:00
logger.go Merge tag 'nektos/v0.2.43' 2023-03-16 11:45:29 +08:00
reusable_workflow.go Add token for getting reusable workflows from local private repos (#38) 2023-04-06 14:16:20 +08:00
run_context.go Fix container network issue (#56) 2023-05-16 14:03:55 +08:00
run_context_test.go Merge tag 'nektos/v0.2.43' 2023-03-16 11:45:29 +08:00
runner.go Fix container network issue (#56) 2023-05-16 14:03:55 +08:00
runner_test.go Merge tag 'nektos/v0.2.45' 2023-05-04 17:45:53 +08:00
step.go fix: environment handling windows (host mode) (#1732) 2023-04-18 18:09:57 +00:00
step_action_local.go Fix composite input handling (#1345) 2022-10-06 21:58:16 +00:00
step_action_local_test.go refactor: GITHUB_ENV command / remove env.PATH (#1503) 2023-02-04 13:35:13 +00:00
step_action_remote.go Merge tag 'nektos/v0.2.43' 2023-03-16 11:45:29 +08:00
step_action_remote_test.go Merge tag 'nektos/v0.2.43' 2023-03-16 11:45:29 +08:00
step_docker.go Merge tag 'nektos/v0.2.34' 2022-12-05 17:08:17 +08:00
step_docker_test.go refactor: GITHUB_ENV command / remove env.PATH (#1503) 2023-02-04 13:35:13 +00:00
step_factory.go feat: split job steps into its own files/structs (#1004) 2022-03-22 14:13:00 -07:00
step_factory_test.go feat: split job steps into its own files/structs (#1004) 2022-03-22 14:13:00 -07:00
step_run.go Make sure working directory is respected when configured from matrix (#1686) 2023-03-28 12:24:03 +00:00
step_run_test.go chore: use new style octal (#1630) 2023-02-16 15:34:51 +00:00
step_test.go fix: environment handling windows (host mode) (#1732) 2023-04-18 18:09:57 +00:00