@@ -32,10 +32,8 @@ import (
32
32
"unicode/utf16"
33
33
34
34
runnerErrors "github.com/cloudbase/garm-provider-common/errors"
35
+ "github.com/cloudbase/garm-provider-common/params"
35
36
36
- commonParams "github.com/cloudbase/garm-provider-common/params"
37
-
38
- "github.com/google/go-github/v55/github"
39
37
"github.com/google/uuid"
40
38
gorillaHandlers "github.com/gorilla/handlers"
41
39
"github.com/pkg/errors"
@@ -50,24 +48,24 @@ const alphanumeric = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuv
50
48
var rxEmail = regexp .MustCompile ("^[a-zA-Z0-9.!#$%&'*+\\ /=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\ .[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$" )
51
49
52
50
var (
53
- OSToOSTypeMap map [string ]commonParams .OSType = map [string ]commonParams .OSType {
54
- "almalinux" : commonParams .Linux ,
55
- "alma" : commonParams .Linux ,
56
- "alpine" : commonParams .Linux ,
57
- "archlinux" : commonParams .Linux ,
58
- "arch" : commonParams .Linux ,
59
- "centos" : commonParams .Linux ,
60
- "ubuntu" : commonParams .Linux ,
61
- "rhel" : commonParams .Linux ,
62
- "suse" : commonParams .Linux ,
63
- "opensuse" : commonParams .Linux ,
64
- "fedora" : commonParams .Linux ,
65
- "debian" : commonParams .Linux ,
66
- "flatcar" : commonParams .Linux ,
67
- "gentoo" : commonParams .Linux ,
68
- "rockylinux" : commonParams .Linux ,
69
- "rocky" : commonParams .Linux ,
70
- "windows" : commonParams .Windows ,
51
+ OSToOSTypeMap map [string ]params .OSType = map [string ]params .OSType {
52
+ "almalinux" : params .Linux ,
53
+ "alma" : params .Linux ,
54
+ "alpine" : params .Linux ,
55
+ "archlinux" : params .Linux ,
56
+ "arch" : params .Linux ,
57
+ "centos" : params .Linux ,
58
+ "ubuntu" : params .Linux ,
59
+ "rhel" : params .Linux ,
60
+ "suse" : params .Linux ,
61
+ "opensuse" : params .Linux ,
62
+ "fedora" : params .Linux ,
63
+ "debian" : params .Linux ,
64
+ "flatcar" : params .Linux ,
65
+ "gentoo" : params .Linux ,
66
+ "rockylinux" : params .Linux ,
67
+ "rocky" : params .Linux ,
68
+ "windows" : params .Windows ,
71
69
}
72
70
73
71
githubArchMapping map [string ]string = map [string ]string {
86
84
}
87
85
88
86
//
89
- githubOSTag = map [commonParams .OSType ]string {
90
- commonParams .Linux : "Linux" ,
91
- commonParams .Windows : "Windows" ,
87
+ githubOSTag = map [params .OSType ]string {
88
+ params .Linux : "Linux" ,
89
+ params .Windows : "Windows" ,
92
90
}
93
91
)
94
92
@@ -119,7 +117,7 @@ func ResolveToGithubOSType(osType string) (string, error) {
119
117
// ResolveToGithubTag returns the default OS tag that self hosted runners automatically
120
118
// (and forcefully) adds to every runner that gets deployed. We need to keep track of those
121
119
// tags internally as well.
122
- func ResolveToGithubTag (os commonParams .OSType ) (string , error ) {
120
+ func ResolveToGithubTag (os params .OSType ) (string , error ) {
123
121
ghOS , ok := githubOSTag [os ]
124
122
if ! ok {
125
123
return "" , runnerErrors .NewNotFoundError ("os %s is unknown" , os )
@@ -178,37 +176,34 @@ func ConvertFileToBase64(file string) (string, error) {
178
176
return base64 .StdEncoding .EncodeToString (bytes ), nil
179
177
}
180
178
181
- func OSToOSType (os string ) (commonParams .OSType , error ) {
179
+ func OSToOSType (os string ) (params .OSType , error ) {
182
180
osType , ok := OSToOSTypeMap [strings .ToLower (os )]
183
181
if ! ok {
184
- return commonParams .Unknown , fmt .Errorf ("no OS to OS type mapping for %s" , os )
182
+ return params .Unknown , fmt .Errorf ("no OS to OS type mapping for %s" , os )
185
183
}
186
184
return osType , nil
187
185
}
188
186
189
- func GetTools (osType commonParams .OSType , osArch commonParams .OSArch , tools []* github .RunnerApplicationDownload ) (github .RunnerApplicationDownload , error ) {
187
+ func GetTools (osType params .OSType , osArch params .OSArch , tools []params .RunnerApplicationDownload ) (params .RunnerApplicationDownload , error ) {
190
188
// Validate image OS. Linux only for now.
191
189
switch osType {
192
- case commonParams .Linux :
193
- case commonParams .Windows :
190
+ case params .Linux :
191
+ case params .Windows :
194
192
default :
195
- return github .RunnerApplicationDownload {}, fmt .Errorf ("unsupported OS type: %s" , osType )
193
+ return params .RunnerApplicationDownload {}, fmt .Errorf ("unsupported OS type: %s" , osType )
196
194
}
197
195
198
196
switch osArch {
199
- case commonParams .Amd64 :
200
- case commonParams .Arm :
201
- case commonParams .Arm64 :
197
+ case params .Amd64 :
198
+ case params .Arm :
199
+ case params .Arm64 :
202
200
default :
203
- return github .RunnerApplicationDownload {}, fmt .Errorf ("unsupported OS arch: %s" , osArch )
201
+ return params .RunnerApplicationDownload {}, fmt .Errorf ("unsupported OS arch: %s" , osArch )
204
202
}
205
203
206
204
// Find tools for OS/Arch.
207
205
for _ , tool := range tools {
208
- if tool == nil {
209
- continue
210
- }
211
- if tool .OS == nil || tool .Architecture == nil {
206
+ if tool .GetOS () == "" || tool .GetArchitecture () == "" {
212
207
continue
213
208
}
214
209
@@ -221,11 +216,11 @@ func GetTools(osType commonParams.OSType, osArch commonParams.OSArch, tools []*g
221
216
if err != nil {
222
217
continue
223
218
}
224
- if * tool .Architecture == ghArch && * tool .OS == ghOS {
225
- return * tool , nil
219
+ if tool .GetArchitecture () == ghArch && tool .GetOS () == ghOS {
220
+ return tool , nil
226
221
}
227
222
}
228
- return github .RunnerApplicationDownload {}, fmt .Errorf ("failed to find tools for OS %s and arch %s" , osType , osArch )
223
+ return params .RunnerApplicationDownload {}, fmt .Errorf ("failed to find tools for OS %s and arch %s" , osType , osArch )
229
224
}
230
225
231
226
// GetRandomString returns a secure random string
0 commit comments