(ctx context.Context, repoDir string)
| 83 | } |
| 84 | |
| 85 | func newBuildConfig(ctx context.Context, repoDir string) buildsystems.BuildConfig { |
| 86 | return buildsystems.BuildConfig{ |
| 87 | Ctx: ctx, |
| 88 | PortConfig: buildsystems.PortConfig{ |
| 89 | LibName: "x264", |
| 90 | LibVersion: "stable", |
| 91 | ProjectName: "proj", |
| 92 | RepoDir: repoDir, |
| 93 | }, |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | func setupArchiveFile(t *testing.T, tmpWorkspace string) (archivePath string, archiveSha string) { |
| 98 | t.Helper() |
no outgoing calls
no test coverage detected