29 lines
686 B
Go
29 lines
686 B
Go
package detector
|
|
|
|
var prjStatusMap = map[string]SylixOSPrj{
|
|
"base_yml_test": {
|
|
Path: "./testdata_with_yml/base_test",
|
|
IsPrj: true,
|
|
HasUploadYml: true,
|
|
PrjType: "SylixOSBaseProject",
|
|
},
|
|
"bsp_yml_test": {
|
|
Path: "./testdata_with_yml/bsp_test",
|
|
IsPrj: true,
|
|
HasUploadYml: true,
|
|
PrjType: "SylixOSBspProject",
|
|
},
|
|
"linux_cpt_yml_test": {
|
|
Path: "./testdata_with_yml/linux_cpt_test",
|
|
IsPrj: true,
|
|
HasUploadYml: true,
|
|
PrjType: "SylixOSSlibProject",
|
|
},
|
|
"app_yml_test": {
|
|
Path: "./testdata_with_yml/app_test",
|
|
IsPrj: true,
|
|
HasUploadYml: true,
|
|
PrjType: "SylixOSAppProject",
|
|
},
|
|
}
|