Home
last modified time | relevance | path

Searched refs:Workspace (Results 1 – 9 of 9) sorted by relevance

/developtools/integration_verification/tools/fotff/pkg/dayu200/
Dflash.go65 …if err := utils.ExecContext(ctx, m.FlashTool, "-s", locationID, "UL", filepath.Join(m.Workspace, p…
71 …if err := utils.ExecContext(ctx, m.FlashTool, "-s", locationID, "UL", filepath.Join(m.Workspace, p…
80 …Context(ctx, m.FlashTool, "-s", locationID, "DI", "-p", filepath.Join(m.Workspace, pkg, "parameter…
88 …-s", locationID, "DI", "-uboot", filepath.Join(m.Workspace, pkg, "uboot.img"), filepath.Join(m.Wor…
97 if _, err := os.Stat(filepath.Join(m.Workspace, pkg, part+".img")); err != nil {
104 …-s", locationID, "DI", "-"+part, filepath.Join(m.Workspace, pkg, part+".img"), filepath.Join(m.Wor…
110 …-s", locationID, "DI", "-"+part, filepath.Join(m.Workspace, pkg, part+".img"), filepath.Join(m.Wor…
Ddayu200.go32 Workspace string `key:"workspace" default:"workspace"` member
75 …ommon.NewManager("dayu200", ret.Branch, ret.ManifestBranch, ret.ArchiveDir, ret.Workspace, watchCI)
/developtools/integration_verification/tools/fotff/pkg/gitee_common/
Dcommon.go35 Workspace string member
45 Workspace: workspace,
56 es, err := os.ReadDir(m.Workspace)
58 logrus.Errorf("can not read %s: %v", m.Workspace, err)
65 path := filepath.Join(m.Workspace, e.Name())
123 data, err := os.ReadFile(filepath.Join(m.Workspace, pkg, "__last_issue__"))
140 dir := filepath.Join(m.Workspace, dirName)
152 return filepath.Join(m.Workspace, pkg)
Dsteps_gitee_test.go33 m := &Manager{Workspace: "./testdata", Branch: "master"}
35 entries, _ := os.ReadDir(m.Workspace)
40 os.RemoveAll(filepath.Join(m.Workspace, e.Name()))
79 …mLast, err := vcs.ParseManifestFile(filepath.Join(m.Workspace, ret[len(ret)-1], "manifest_tag.xml"…
87 expected, err := vcs.ParseManifestFile(filepath.Join(m.Workspace, tt.to, "manifest_tag.xml"))
Dget_newer_or_fail.go35 dir := filepath.Join(m.Workspace, dirName)
92 if err := os.MkdirAll(filepath.Join(m.Workspace, pkg), 0750); err != nil {
101 err = os.WriteFile(filepath.Join(m.Workspace, pkg, "manifest_tag.xml"), resp, 0640)
106 …if err := compressor.NewTgz().Compress(filepath.Join(m.Workspace, pkg), filepath.Join(m.ArchiveDir…
Dsteps_ci.go135 if err := os.MkdirAll(filepath.Join(m.Workspace, tag.Id), 0750); err != nil {
144 …if err := os.WriteFile(filepath.Join(m.Workspace, tag.Id, "__last_issue__"), []byte(fmt.Sprintf("%…
151 err = os.WriteFile(filepath.Join(m.Workspace, tag.Id, "manifest_tag.xml"), resp, 0640)
Dbuild.go58 if _, err := os.Stat(filepath.Join(m.Workspace, config.Pkg, imgName)); err != nil {
76 …fmt.Sprintf("%s/.repo/manifest.xml", server.WorkSpace), filepath.Join(m.Workspace, config.Pkg, "ma…
102 …fmt.Sprintf("%s/%s", server.WorkSpace, f), filepath.Join(m.Workspace, config.Pkg, imgName)); err !…
Dsteps_gitee.go71 baseManifest, err := vcs.ParseManifestFile(filepath.Join(m.Workspace, from, "manifest_tag.xml"))
86 m1, err := vcs.ParseManifestFile(filepath.Join(m.Workspace, from, "manifest_tag.xml"))
90 m2, err := vcs.ParseManifestFile(filepath.Join(m.Workspace, to, "manifest_tag.xml"))
356 if err := os.MkdirAll(filepath.Join(m.Workspace, md5sum), 0750); err != nil {
359 …if err := os.WriteFile(filepath.Join(m.Workspace, md5sum, "__last_issue__"), []byte(fmt.Sprintf("%…
362 err = newManifest.WriteFile(filepath.Join(m.Workspace, md5sum, "manifest_tag.xml"))
/developtools/integration_verification/tools/fotff/pkg/gitee_build/
Dgitee_build.go29 Workspace string `key:"workspace" default:"workspace"` member
43 …mmon.NewManager(ret.Component, ret.Branch, ret.ManifestBranch, ret.ArchiveDir, ret.Workspace, true)