Skip to content

Commit 994e968

Browse files
Accept spec files already present in artifact (#2130)
Accept spec files already present in artifact (#2130)
1 parent 8884e3c commit 994e968

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

magefile.go

+12-7
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ func packageAgent(platforms []string, packagingFn func()) {
789789
panic(err)
790790
}
791791

792-
// cope spec file for match
792+
// copy spec file for match
793793
specName := filepath.Base(f)
794794
idx := strings.Index(specName, "-"+version)
795795
if idx != -1 {
@@ -818,15 +818,20 @@ func packageAgent(platforms []string, packagingFn func()) {
818818
}
819819

820820
func copyComponentSpecs(componentName, versionedDropPath string) (string, error) {
821-
sourceSpecFile := filepath.Join("specs", componentName+specSuffix)
822-
targetPath := filepath.Join(versionedDropPath, componentName+specSuffix)
823-
err := devtools.Copy(sourceSpecFile, targetPath)
824-
if err != nil {
825-
return "", errors.Wrapf(err, "failed copying spec file %q to %q", sourceSpecFile, targetPath)
821+
specFileName := componentName + specSuffix
822+
targetPath := filepath.Join(versionedDropPath, specFileName)
823+
824+
if _, err := os.Stat(targetPath); err != nil {
825+
// spec not present copy from local
826+
sourceSpecFile := filepath.Join("specs", specFileName)
827+
err := devtools.Copy(sourceSpecFile, targetPath)
828+
if err != nil {
829+
return "", errors.Wrapf(err, "failed copying spec file %q to %q", sourceSpecFile, targetPath)
830+
}
826831
}
827832

828833
// compute checksum
829-
return devtools.GetSHA512Hash(sourceSpecFile)
834+
return devtools.GetSHA512Hash(targetPath)
830835
}
831836

832837
func appendComponentChecksums(versionedDropPath string, checksums map[string]string) error {

specs/shipper.spec.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# this is used only in UT. does not make it into production
2+
# actual shipper spec file lives in shipper repo and is named
3+
# properly 'elastic-agent-shipper.spec.yml'
14
version: 2
25
shippers:
36
- name: shipper

0 commit comments

Comments
 (0)