@@ -12,13 +12,11 @@ const DEFAULT_MACHINES: MachineApiItem[] = [
1212 {
1313 id : 'm1.medium' ,
1414 name : 'M1 Medium' ,
15- chip : 'apple' ,
1615 cpu_count : '4 vCPU' ,
1716 cpu_description : '3.2GHz' ,
1817 ram : '6 GB RAM' ,
1918 credit_per_min : 2 ,
2019 os_id : 'macos' ,
21- is_available : true ,
2220 is_promoted : false ,
2321 available_on_stacks : [
2422 'osx-xcode-16.1.x-edge' ,
@@ -32,13 +30,11 @@ const DEFAULT_MACHINES: MachineApiItem[] = [
3230 {
3331 id : 'standard' ,
3432 name : 'Medium' ,
35- chip : 'intel' ,
3633 cpu_count : '4 vCPU' ,
3734 cpu_description : '3.1GHz' ,
3835 ram : '16 GB RAM' ,
3936 credit_per_min : 1 ,
4037 os_id : 'linux' ,
41- is_available : true ,
4238 is_promoted : false ,
4339 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' , 'ubuntu-jammy-22.04-bitrise-2024' ] ,
4440 } ,
@@ -211,13 +207,11 @@ function groupedMachines(options?: Options): MachineGroupApiItem[] {
211207 {
212208 id : 'm1.large' ,
213209 name : 'M1 Large' ,
214- chip : 'apple' ,
215210 cpu_count : '8 vCPU' ,
216211 cpu_description : '3.2GHz' ,
217212 ram : '12 GB RAM' ,
218213 credit_per_min : 4 ,
219214 os_id : 'macos' ,
220- is_available : true ,
221215 is_promoted : false ,
222216 available_on_stacks : [
223217 'osx-xcode-16.1.x-edge' ,
@@ -231,13 +225,11 @@ function groupedMachines(options?: Options): MachineGroupApiItem[] {
231225 {
232226 id : 'm2.medium' ,
233227 name : 'M2 Pro Medium' ,
234- chip : 'apple' ,
235228 cpu_count : '4 vCPU' ,
236229 cpu_description : '3.7GHz' ,
237230 ram : '6 GB RAM' ,
238231 credit_per_min : 3 ,
239232 os_id : 'macos' ,
240- is_available : true ,
241233 is_promoted : false ,
242234 available_on_stacks : [
243235 'osx-xcode-16.1.x-edge' ,
@@ -252,13 +244,11 @@ function groupedMachines(options?: Options): MachineGroupApiItem[] {
252244 {
253245 id : 'm2.large' ,
254246 name : 'M2 Pro Large' ,
255- chip : 'apple' ,
256247 cpu_count : '6 vCPU' ,
257248 cpu_description : '3.7GHz' ,
258249 ram : '14 GB RAM' ,
259250 credit_per_min : 5 ,
260251 os_id : 'macos' ,
261- is_available : true ,
262252 is_promoted : false ,
263253 available_on_stacks : [
264254 'osx-xcode-16.1.x-edge' ,
@@ -273,90 +263,76 @@ function groupedMachines(options?: Options): MachineGroupApiItem[] {
273263 {
274264 id : 'm2.x-large' ,
275265 name : 'M2 Pro X Large' ,
276- chip : 'apple' ,
277266 cpu_count : '12 vCPU' ,
278267 cpu_description : '3.7GHz' ,
279268 ram : '28 GB RAM' ,
280269 credit_per_min : 9 ,
281270 os_id : 'macos' ,
282- is_available : true ,
283271 is_promoted : false ,
284272 available_on_stacks : [ 'osx-xcode-16.1.x-edge' , 'osx-xcode-16.0.x-edge' , 'osx-xcode-16.0.x' , 'mixed-stack' ] ,
285273 } ,
286274 {
287275 id : 'intel.medium' ,
288276 name : 'Intel Medium' ,
289- chip : 'intel' ,
290277 cpu_count : '4 vCPU' ,
291278 cpu_description : '3.1GHz' ,
292279 ram : '16 GB RAM' ,
293280 credit_per_min : 1 ,
294281 os_id : 'linux' ,
295- is_available : true ,
296282 is_promoted : false ,
297283 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' , 'ubuntu-jammy-22.04-bitrise-2024' ] ,
298284 } ,
299285 {
300286 id : 'intel.large' ,
301287 name : 'Intel Large' ,
302- chip : 'intel' ,
303288 cpu_count : '8 vCPU' ,
304289 cpu_description : '3.1GHz' ,
305290 ram : '32 GB RAM' ,
306291 credit_per_min : 2 ,
307292 os_id : 'linux' ,
308- is_available : true ,
309293 is_promoted : false ,
310294 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' , 'ubuntu-jammy-22.04-bitrise-2024' ] ,
311295 } ,
312296 {
313297 id : 'amd.medium' ,
314298 name : 'EPYC Zen4 Medium' ,
315- chip : 'amd' ,
316299 cpu_count : '4 vCPU' ,
317300 cpu_description : '3.7GHz' ,
318301 ram : '16 GB RAM' ,
319302 credit_per_min : 1 ,
320303 os_id : 'linux' ,
321- is_available : true ,
322304 is_promoted : false ,
323305 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' , 'ubuntu-jammy-22.04-bitrise-2024' , 'mixed-stack' ] ,
324306 } ,
325307 {
326308 id : 'amd.large' ,
327309 name : 'EPYC Zen4 Large' ,
328- chip : 'amd' ,
329310 cpu_count : '8 vCPU' ,
330311 cpu_description : '3.7GHz' ,
331312 ram : '32 GB RAM' ,
332313 credit_per_min : 3 ,
333314 os_id : 'linux' ,
334- is_available : true ,
335315 is_promoted : false ,
336316 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' , 'ubuntu-jammy-22.04-bitrise-2024' , 'mixed-stack' ] ,
337317 } ,
338318 {
339319 id : 'amd.x-large' ,
340320 name : 'EPYC Zen4 X Large' ,
341- chip : 'amd' ,
342321 cpu_count : '16 vCPU' ,
343322 cpu_description : '3.7GHz' ,
344323 ram : '64 GB RAM' ,
345324 credit_per_min : 5 ,
346325 os_id : 'linux' ,
347- is_available : true ,
348326 is_promoted : false ,
349327 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' , 'ubuntu-jammy-22.04-bitrise-2024' , 'mixed-stack' ] ,
350328 } ,
351329 {
352330 id : 'machine-x' ,
353331 name : 'Non Credit Machine' ,
354- chip : 'apple' ,
355332 cpu_count : '8 vCPU' ,
356333 cpu_description : '3.7GHz' ,
357334 ram : '32 GB RAM' ,
358335 os_id : 'linux' ,
359- is_available : true ,
360336 is_promoted : false ,
361337 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' ] ,
362338 } ,
@@ -369,48 +345,40 @@ function groupedMachines(options?: Options): MachineGroupApiItem[] {
369345 {
370346 id : 'machine-y1' ,
371347 name : 'Machine Y1 (Mac OS)' ,
372- chip : 'apple' ,
373348 cpu_count : '8 vCPU' ,
374349 cpu_description : '3.7GHz' ,
375350 ram : '32 GB RAM' ,
376351 os_id : 'macos' ,
377- is_available : false ,
378352 is_promoted : true ,
379353 available_on_stacks : [ 'osx-xcode-16.1.x-edge' , 'osx-xcode-16.0.x-edge' ] ,
380354 } ,
381355 {
382356 id : 'machine-y2' ,
383357 name : 'Machine Y2 (Mac OS)' ,
384- chip : 'apple' ,
385358 cpu_count : '8 vCPU' ,
386359 cpu_description : '3.7GHz' ,
387360 ram : '32 GB RAM' ,
388361 os_id : 'macos' ,
389- is_available : false ,
390362 is_promoted : true ,
391363 available_on_stacks : [ 'osx-xcode-16.1.x-edge' , 'osx-xcode-16.0.x-edge' ] ,
392364 } ,
393365 {
394366 id : 'machine-z1' ,
395367 name : 'Machine Z1 (Linux)' ,
396- chip : 'amd' ,
397368 cpu_count : '8 vCPU' ,
398369 cpu_description : '3.7GHz' ,
399370 ram : '32 GB RAM' ,
400371 os_id : 'linux' ,
401- is_available : false ,
402372 is_promoted : true ,
403373 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' ] ,
404374 } ,
405375 {
406376 id : 'machine-z2' ,
407377 name : 'Machine Z2 (Linux)' ,
408- chip : 'amd' ,
409378 cpu_count : '8 vCPU' ,
410379 cpu_description : '3.7GHz' ,
411380 ram : '32 GB RAM' ,
412381 os_id : 'linux' ,
413- is_available : false ,
414382 is_promoted : true ,
415383 available_on_stacks : [ 'ubuntu-noble-24.04-bitrise-2025' ] ,
416384 } ,
0 commit comments