Compare commits

..

No commits in common. "29fc78e400a26550159a510a63f93930665bc72a" and "19ba9c529dd3b0578d4032c843c7f7082a887192" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -25,7 +25,7 @@
- the intended immutable files should be placed at a sub-directory named `immutable_files` at same position as the `repo.toml` file - the intended immutable files should be placed at a sub-directory named `immutable_files` at same position as the `repo.toml` file
```shell ```shell
$ tree . [nuvole0217@Nuvole test]$ tree .
. .
|- immutable_files |- immutable_files
| |-- push.yaml | |-- push.yaml
@ -34,7 +34,6 @@ $ tree .
``` ```
- sample command on the server - sample command on the server
```shell ```shell
joj3-config-generator convert /home/tt/.config/joj joj3-config-generator convert /home/tt/.config/joj
``` ```

View File

@ -3,7 +3,7 @@ from typing import List
from joj3_config_generator.models import joj1, repo, result, task from joj3_config_generator.models import joj1, repo, result, task
from joj3_config_generator.processers.joj1 import get_joj1_run_stage from joj3_config_generator.processers.joj1 import get_joj1_run_stage
from joj3_config_generator.processers.repo import ( from joj3_config_generator.processers.repo import ( # get_teapotcheck_config,
get_healthcheck_config, get_healthcheck_config,
get_teapot_stage, get_teapot_stage,
) )
@ -67,5 +67,5 @@ def convert_joj1(joj1_conf: joj1.Config) -> task.Config:
name=(""), name=(""),
), ),
release=task.Release(deadline=None, begin_time=None), release=task.Release(deadline=None, begin_time=None),
stages=stages, stages=[],
) )