beaker-hostgenerator 1.14.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -0
- data/lib/beaker-hostgenerator/data.rb +70 -44
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62f9f72385b498796e24c6b39c8b361d1f682380c43e09a546212705872c70d8
|
4
|
+
data.tar.gz: b6c5b7e338501c799cba250c6e93f79355f963be691b2dab402f19f4a8b3ef85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c9a8b6ad903b0e745bb4f7a96061a9f9de1ee0ea7c1e7f57cd6d5a9f8dd8d87a6fd54bc4e3d94638fa11efa533f916dfd6a5acdd7c9d327928a942fb75eedfc
|
7
|
+
data.tar.gz: b94b8f1a329c7d0ad6c9b71164c6d72af429fd80d2496c8138bbe2efdeef544723d74838940a3106a15ae54474bcd88338426a2848fbdf4e651980f4594e8cc8
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,30 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [1.17.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.17.0) (2022-09-12)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.16.0...1.17.0)
|
8
|
+
|
9
|
+
**Merged pull requests:**
|
10
|
+
|
11
|
+
- \(PE-34537\) Update main PE version to 2023.0 [\#257](https://github.com/voxpupuli/beaker-hostgenerator/pull/257) ([nmburgan](https://github.com/nmburgan))
|
12
|
+
|
13
|
+
## [1.16.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.16.0) (2022-06-27)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.15.0...1.16.0)
|
16
|
+
|
17
|
+
**Implemented enhancements:**
|
18
|
+
|
19
|
+
- \(IMAGES-1297\) Adds macOS 11/12 M1 support [\#255](https://github.com/voxpupuli/beaker-hostgenerator/pull/255) ([mhashizume](https://github.com/mhashizume))
|
20
|
+
|
21
|
+
## [1.15.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.15.0) (2022-06-23)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.14.0...1.15.0)
|
24
|
+
|
25
|
+
**Implemented enhancements:**
|
26
|
+
|
27
|
+
- Add Windows 11 Enterprise, Fedora 36 [\#253](https://github.com/voxpupuli/beaker-hostgenerator/pull/253) ([mhashizume](https://github.com/mhashizume))
|
28
|
+
|
5
29
|
## [1.14.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.14.0) (2022-05-30)
|
6
30
|
|
7
31
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.13.0...1.14.0)
|
@@ -13,7 +13,7 @@ module BeakerHostGenerator
|
|
13
13
|
# `include BeakerHostGenerator::Data` and then `<function>()`.
|
14
14
|
module Data
|
15
15
|
module_function
|
16
|
-
MAIN_PE_VERSION=
|
16
|
+
MAIN_PE_VERSION='2023.0'
|
17
17
|
PE_TARBALL_SERVER="https://artifactory.delivery.puppetlabs.net/artifactory/generic_enterprise__local"
|
18
18
|
|
19
19
|
def pe_version
|
@@ -83,7 +83,7 @@ module BeakerHostGenerator
|
|
83
83
|
result = {}
|
84
84
|
|
85
85
|
# Fedora
|
86
|
-
(19..
|
86
|
+
(19..36).each do |release|
|
87
87
|
# 32 bit support was dropped in Fedora 31
|
88
88
|
if release < 31
|
89
89
|
result["fedora#{release}-32"] = {
|
@@ -884,6 +884,14 @@ module BeakerHostGenerator
|
|
884
884
|
'template' => 'macos-112-x86_64'
|
885
885
|
}
|
886
886
|
},
|
887
|
+
'osx11-ARM64' => {
|
888
|
+
:general => {
|
889
|
+
'platform' => 'osx-11-arm64'
|
890
|
+
},
|
891
|
+
:vmpooler => {
|
892
|
+
'template' => 'macos-11-arm64'
|
893
|
+
}
|
894
|
+
},
|
887
895
|
'osx12-64' => {
|
888
896
|
:general => {
|
889
897
|
'platform' => 'osx-12-x86_64'
|
@@ -892,6 +900,14 @@ module BeakerHostGenerator
|
|
892
900
|
'template' => 'macos-12-x86_64'
|
893
901
|
}
|
894
902
|
},
|
903
|
+
'osx12-ARM64' => {
|
904
|
+
:general => {
|
905
|
+
'platform' => 'osx-12-arm64'
|
906
|
+
},
|
907
|
+
:vmpooler => {
|
908
|
+
'template' => 'macos-12-arm64'
|
909
|
+
}
|
910
|
+
},
|
895
911
|
'redhat4-32' => {
|
896
912
|
:general => {
|
897
913
|
'platform' => 'el-4-i386'
|
@@ -1275,7 +1291,7 @@ module BeakerHostGenerator
|
|
1275
1291
|
:general => {
|
1276
1292
|
'platform' => 'windows-2008-64',
|
1277
1293
|
'packaging_platform' => 'windows-2012-x64',
|
1278
|
-
'ruby_arch'
|
1294
|
+
'ruby_arch' => 'x64'
|
1279
1295
|
},
|
1280
1296
|
:vmpooler => {
|
1281
1297
|
'template' => 'win-2008-x86_64'
|
@@ -1285,7 +1301,7 @@ module BeakerHostGenerator
|
|
1285
1301
|
:general => {
|
1286
1302
|
'platform' => 'windows-2008-64',
|
1287
1303
|
'packaging_platform' => 'windows-2012-x64',
|
1288
|
-
'ruby_arch'
|
1304
|
+
'ruby_arch' => 'x86'
|
1289
1305
|
},
|
1290
1306
|
:vmpooler => {
|
1291
1307
|
'template' => 'win-2008-x86_64'
|
@@ -1295,7 +1311,7 @@ module BeakerHostGenerator
|
|
1295
1311
|
:general => {
|
1296
1312
|
'platform' => 'windows-2008r2-64',
|
1297
1313
|
'packaging_platform' => 'windows-2012-x64',
|
1298
|
-
'ruby_arch'
|
1314
|
+
'ruby_arch' => 'x64'
|
1299
1315
|
},
|
1300
1316
|
:vmpooler => {
|
1301
1317
|
'template' => 'win-2008r2-x86_64'
|
@@ -1305,7 +1321,7 @@ module BeakerHostGenerator
|
|
1305
1321
|
:general => {
|
1306
1322
|
'platform' => 'windows-2008r2-64',
|
1307
1323
|
'packaging_platform' => 'windows-2012-x64',
|
1308
|
-
'ruby_arch'
|
1324
|
+
'ruby_arch' => 'x86'
|
1309
1325
|
},
|
1310
1326
|
:vmpooler => {
|
1311
1327
|
'template' => 'win-2008r2-x86_64'
|
@@ -1315,7 +1331,7 @@ module BeakerHostGenerator
|
|
1315
1331
|
:general => {
|
1316
1332
|
'platform' => 'windows-2012-64',
|
1317
1333
|
'packaging_platform' => 'windows-2012-x64',
|
1318
|
-
'ruby_arch'
|
1334
|
+
'ruby_arch' => 'x64'
|
1319
1335
|
},
|
1320
1336
|
:vmpooler => {
|
1321
1337
|
'template' => 'win-2012-x86_64'
|
@@ -1325,7 +1341,7 @@ module BeakerHostGenerator
|
|
1325
1341
|
:general => {
|
1326
1342
|
'platform' => 'windows-2012-64',
|
1327
1343
|
'packaging_platform' => 'windows-2012-x64',
|
1328
|
-
'ruby_arch'
|
1344
|
+
'ruby_arch' => 'x86'
|
1329
1345
|
},
|
1330
1346
|
:vmpooler => {
|
1331
1347
|
'template' => 'win-2012-x86_64'
|
@@ -1335,7 +1351,7 @@ module BeakerHostGenerator
|
|
1335
1351
|
:general => {
|
1336
1352
|
'platform' => 'windows-2012r2-64',
|
1337
1353
|
'packaging_platform' => 'windows-2012-x64',
|
1338
|
-
'ruby_arch'
|
1354
|
+
'ruby_arch' => 'x64'
|
1339
1355
|
},
|
1340
1356
|
:vmpooler => {
|
1341
1357
|
'template' => 'win-2012r2-x86_64'
|
@@ -1345,7 +1361,7 @@ module BeakerHostGenerator
|
|
1345
1361
|
:general => {
|
1346
1362
|
'platform' => 'windows-2012r2-64',
|
1347
1363
|
'packaging_platform' => 'windowsfips-2012-x64',
|
1348
|
-
'ruby_arch'
|
1364
|
+
'ruby_arch' => 'x64'
|
1349
1365
|
},
|
1350
1366
|
:vmpooler => {
|
1351
1367
|
'template' => 'win-2012r2-fips-x86_64'
|
@@ -1355,7 +1371,7 @@ module BeakerHostGenerator
|
|
1355
1371
|
:general => {
|
1356
1372
|
'platform' => 'windows-2012r2-64',
|
1357
1373
|
'packaging_platform' => 'windowsfips-2012-x64',
|
1358
|
-
'ruby_arch'
|
1374
|
+
'ruby_arch' => 'x64'
|
1359
1375
|
},
|
1360
1376
|
:vmpooler => {
|
1361
1377
|
'template' => 'win-2012r2-fips-x86_64'
|
@@ -1365,7 +1381,7 @@ module BeakerHostGenerator
|
|
1365
1381
|
:general => {
|
1366
1382
|
'platform' => 'windows-2012r2-64',
|
1367
1383
|
'packaging_platform' => 'windows-2012-x64',
|
1368
|
-
'ruby_arch'
|
1384
|
+
'ruby_arch' => 'x86'
|
1369
1385
|
},
|
1370
1386
|
:vmpooler => {
|
1371
1387
|
'template' => 'win-2012r2-x86_64'
|
@@ -1375,7 +1391,7 @@ module BeakerHostGenerator
|
|
1375
1391
|
:general => {
|
1376
1392
|
'platform' => 'windows-2012r2-64',
|
1377
1393
|
'packaging_platform' => 'windows-2012-x64',
|
1378
|
-
'ruby_arch'
|
1394
|
+
'ruby_arch' => 'x64'
|
1379
1395
|
},
|
1380
1396
|
:vmpooler => {
|
1381
1397
|
'template' => 'win-2012r2-wmf5-x86_64'
|
@@ -1385,7 +1401,7 @@ module BeakerHostGenerator
|
|
1385
1401
|
:general => {
|
1386
1402
|
'platform' => 'windows-2012r2-64',
|
1387
1403
|
'packaging_platform' => 'windows-2012-x64',
|
1388
|
-
'ruby_arch'
|
1404
|
+
'ruby_arch' => 'x64'
|
1389
1405
|
},
|
1390
1406
|
:vmpooler => {
|
1391
1407
|
'template' => 'win-2012r2-ja-x86_64',
|
@@ -1396,7 +1412,7 @@ module BeakerHostGenerator
|
|
1396
1412
|
:general => {
|
1397
1413
|
'platform' => 'windows-2012r2-64',
|
1398
1414
|
'packaging_platform' => 'windows-2012-x64',
|
1399
|
-
'ruby_arch'
|
1415
|
+
'ruby_arch' => 'x86'
|
1400
1416
|
},
|
1401
1417
|
:vmpooler => {
|
1402
1418
|
'template' => 'win-2012r2-ja-x86_64',
|
@@ -1407,7 +1423,7 @@ module BeakerHostGenerator
|
|
1407
1423
|
:general => {
|
1408
1424
|
'platform' => 'windows-2012r2-64',
|
1409
1425
|
'packaging_platform' => 'windows-2012-x64',
|
1410
|
-
'ruby_arch'
|
1426
|
+
'ruby_arch' => 'x64'
|
1411
1427
|
},
|
1412
1428
|
:vmpooler => {
|
1413
1429
|
'template' => 'win-2012r2-fr-x86_64',
|
@@ -1419,7 +1435,7 @@ module BeakerHostGenerator
|
|
1419
1435
|
:general => {
|
1420
1436
|
'platform' => 'windows-2012r2-64',
|
1421
1437
|
'packaging_platform' => 'windows-2012-x64',
|
1422
|
-
'ruby_arch'
|
1438
|
+
'ruby_arch' => 'x86'
|
1423
1439
|
},
|
1424
1440
|
:vmpooler => {
|
1425
1441
|
'template' => 'win-2012r2-fr-x86_64',
|
@@ -1431,7 +1447,7 @@ module BeakerHostGenerator
|
|
1431
1447
|
:general => {
|
1432
1448
|
'platform' => 'windows-2012r2-64',
|
1433
1449
|
'packaging_platform' => 'windows-2012-x64',
|
1434
|
-
'ruby_arch'
|
1450
|
+
'ruby_arch' => 'x64'
|
1435
1451
|
},
|
1436
1452
|
:vmpooler => {
|
1437
1453
|
'template' => 'win-2012r2-core-x86_64'
|
@@ -1441,7 +1457,7 @@ module BeakerHostGenerator
|
|
1441
1457
|
:general => {
|
1442
1458
|
'platform' => 'windows-2012r2-64',
|
1443
1459
|
'packaging_platform' => 'windows-2012-x64',
|
1444
|
-
'ruby_arch'
|
1460
|
+
'ruby_arch' => 'x86'
|
1445
1461
|
},
|
1446
1462
|
:vmpooler => {
|
1447
1463
|
'template' => 'win-2012r2-core-x86_64'
|
@@ -1451,7 +1467,7 @@ module BeakerHostGenerator
|
|
1451
1467
|
:general => {
|
1452
1468
|
'platform' => 'windows-2016-64',
|
1453
1469
|
'packaging_platform' => 'windows-2012-x64',
|
1454
|
-
'ruby_arch'
|
1470
|
+
'ruby_arch' => 'x64'
|
1455
1471
|
},
|
1456
1472
|
:vmpooler => {
|
1457
1473
|
'template' => 'win-2016-x86_64'
|
@@ -1461,7 +1477,7 @@ module BeakerHostGenerator
|
|
1461
1477
|
:general => {
|
1462
1478
|
'platform' => 'windows-2016-64',
|
1463
1479
|
'packaging_platform' => 'windows-2012-x64',
|
1464
|
-
'ruby_arch'
|
1480
|
+
'ruby_arch' => 'x86'
|
1465
1481
|
},
|
1466
1482
|
:vmpooler => {
|
1467
1483
|
'template' => 'win-2016-x86_64'
|
@@ -1471,7 +1487,7 @@ module BeakerHostGenerator
|
|
1471
1487
|
:general => {
|
1472
1488
|
'platform' => 'windows-2016-64',
|
1473
1489
|
'packaging_platform' => 'windows-2012-x64',
|
1474
|
-
'ruby_arch'
|
1490
|
+
'ruby_arch' => 'x64'
|
1475
1491
|
},
|
1476
1492
|
:vmpooler => {
|
1477
1493
|
'template' => 'win-2016-core-x86_64'
|
@@ -1481,7 +1497,7 @@ module BeakerHostGenerator
|
|
1481
1497
|
:general => {
|
1482
1498
|
'platform' => 'windows-2016-64',
|
1483
1499
|
'packaging_platform' => 'windows-2012-x64',
|
1484
|
-
'ruby_arch'
|
1500
|
+
'ruby_arch' => 'x86'
|
1485
1501
|
},
|
1486
1502
|
:vmpooler => {
|
1487
1503
|
'template' => 'win-2016-core-x86_64'
|
@@ -1491,7 +1507,7 @@ module BeakerHostGenerator
|
|
1491
1507
|
:general => {
|
1492
1508
|
'platform' => 'windows-2016-64',
|
1493
1509
|
'packaging_platform' => 'windows-2012-x64',
|
1494
|
-
'ruby_arch'
|
1510
|
+
'ruby_arch' => 'x64'
|
1495
1511
|
},
|
1496
1512
|
:vmpooler => {
|
1497
1513
|
'template' => 'win-2016-fr-x86_64',
|
@@ -1503,7 +1519,7 @@ module BeakerHostGenerator
|
|
1503
1519
|
:general => {
|
1504
1520
|
'platform' => 'windows-2016-64',
|
1505
1521
|
'packaging_platform' => 'windows-2012-x64',
|
1506
|
-
'ruby_arch'
|
1522
|
+
'ruby_arch' => 'x86'
|
1507
1523
|
},
|
1508
1524
|
:vmpooler => {
|
1509
1525
|
'template' => 'win-2016-fr-x86_64',
|
@@ -1515,7 +1531,7 @@ module BeakerHostGenerator
|
|
1515
1531
|
:general => {
|
1516
1532
|
'platform' => 'windows-2019-64',
|
1517
1533
|
'packaging_platform' => 'windows-2012-x64',
|
1518
|
-
'ruby_arch'
|
1534
|
+
'ruby_arch' => 'x64'
|
1519
1535
|
},
|
1520
1536
|
:vmpooler => {
|
1521
1537
|
'template' => 'win-2019-x86_64'
|
@@ -1525,7 +1541,7 @@ module BeakerHostGenerator
|
|
1525
1541
|
:general => {
|
1526
1542
|
'platform' => 'windows-2019-64',
|
1527
1543
|
'packaging_platform' => 'windows-2012-x64',
|
1528
|
-
'ruby_arch'
|
1544
|
+
'ruby_arch' => 'x86'
|
1529
1545
|
},
|
1530
1546
|
:vmpooler => {
|
1531
1547
|
'template' => 'win-2019-x86_64'
|
@@ -1535,7 +1551,7 @@ module BeakerHostGenerator
|
|
1535
1551
|
:general => {
|
1536
1552
|
'platform' => 'windows-2019-64',
|
1537
1553
|
'packaging_platform' => 'windows-2012-x64',
|
1538
|
-
'ruby_arch'
|
1554
|
+
'ruby_arch' => 'x64'
|
1539
1555
|
},
|
1540
1556
|
:vmpooler => {
|
1541
1557
|
'template' => 'win-2019-ja-x86_64',
|
@@ -1546,7 +1562,7 @@ module BeakerHostGenerator
|
|
1546
1562
|
:general => {
|
1547
1563
|
'platform' => 'windows-2019-64',
|
1548
1564
|
'packaging_platform' => 'windows-2012-x64',
|
1549
|
-
'ruby_arch'
|
1565
|
+
'ruby_arch' => 'x86'
|
1550
1566
|
},
|
1551
1567
|
:vmpooler => {
|
1552
1568
|
'template' => 'win-2019-ja-x86_64',
|
@@ -1557,7 +1573,7 @@ module BeakerHostGenerator
|
|
1557
1573
|
:general => {
|
1558
1574
|
'platform' => 'windows-2019-64',
|
1559
1575
|
'packaging_platform' => 'windows-2012-x64',
|
1560
|
-
'ruby_arch'
|
1576
|
+
'ruby_arch' => 'x64'
|
1561
1577
|
},
|
1562
1578
|
:vmpooler => {
|
1563
1579
|
'template' => 'win-2019-fr-x86_64',
|
@@ -1569,7 +1585,7 @@ module BeakerHostGenerator
|
|
1569
1585
|
:general => {
|
1570
1586
|
'platform' => 'windows-2019-64',
|
1571
1587
|
'packaging_platform' => 'windows-2012-x64',
|
1572
|
-
'ruby_arch'
|
1588
|
+
'ruby_arch' => 'x86'
|
1573
1589
|
},
|
1574
1590
|
:vmpooler => {
|
1575
1591
|
'template' => 'win-2019-fr-x86_64',
|
@@ -1581,7 +1597,7 @@ module BeakerHostGenerator
|
|
1581
1597
|
:general => {
|
1582
1598
|
'platform' => 'windows-2019-64',
|
1583
1599
|
'packaging_platform' => 'windows-2012-x64',
|
1584
|
-
'ruby_arch'
|
1600
|
+
'ruby_arch' => 'x64'
|
1585
1601
|
},
|
1586
1602
|
:vmpooler => {
|
1587
1603
|
'template' => 'win-2019-core-x86_64'
|
@@ -1591,7 +1607,7 @@ module BeakerHostGenerator
|
|
1591
1607
|
:general => {
|
1592
1608
|
'platform' => 'windows-2019-64',
|
1593
1609
|
'packaging_platform' => 'windows-2012-x64',
|
1594
|
-
'ruby_arch'
|
1610
|
+
'ruby_arch' => 'x86'
|
1595
1611
|
},
|
1596
1612
|
:vmpooler => {
|
1597
1613
|
'template' => 'win-2019-core-x86_64'
|
@@ -1601,7 +1617,7 @@ module BeakerHostGenerator
|
|
1601
1617
|
:general => {
|
1602
1618
|
'platform' => 'windows-2022-64',
|
1603
1619
|
'packaging_platform' => 'windows-2012-x64',
|
1604
|
-
'ruby_arch'
|
1620
|
+
'ruby_arch' => 'x64'
|
1605
1621
|
},
|
1606
1622
|
:vmpooler => {
|
1607
1623
|
'template' => 'win-2022-x86_64'
|
@@ -1611,7 +1627,7 @@ module BeakerHostGenerator
|
|
1611
1627
|
:general => {
|
1612
1628
|
'platform' => 'windows-7-64',
|
1613
1629
|
'packaging_platform' => 'windows-2012-x64',
|
1614
|
-
'ruby_arch'
|
1630
|
+
'ruby_arch' => 'x64'
|
1615
1631
|
},
|
1616
1632
|
:vmpooler => {
|
1617
1633
|
'template' => 'win-7-x86_64'
|
@@ -1621,7 +1637,7 @@ module BeakerHostGenerator
|
|
1621
1637
|
:general => {
|
1622
1638
|
'platform' => 'windows-8.1-64',
|
1623
1639
|
'packaging_platform' => 'windows-2012-x64',
|
1624
|
-
'ruby_arch'
|
1640
|
+
'ruby_arch' => 'x64'
|
1625
1641
|
},
|
1626
1642
|
:vmpooler => {
|
1627
1643
|
'template' => 'win-81-x86_64'
|
@@ -1631,7 +1647,7 @@ module BeakerHostGenerator
|
|
1631
1647
|
:general => {
|
1632
1648
|
'platform' => 'windows-10ent-32',
|
1633
1649
|
'packaging_platform' => 'windows-2012-x86',
|
1634
|
-
'ruby_arch'
|
1650
|
+
'ruby_arch' => 'x86'
|
1635
1651
|
},
|
1636
1652
|
:vmpooler => {
|
1637
1653
|
'template' => 'win-10-ent-i386'
|
@@ -1641,7 +1657,7 @@ module BeakerHostGenerator
|
|
1641
1657
|
:general => {
|
1642
1658
|
'platform' => 'windows-10ent-64',
|
1643
1659
|
'packaging_platform' => 'windows-2012-x64',
|
1644
|
-
'ruby_arch'
|
1660
|
+
'ruby_arch' => 'x64'
|
1645
1661
|
},
|
1646
1662
|
:vmpooler => {
|
1647
1663
|
'template' => 'win-10-ent-x86_64'
|
@@ -1651,7 +1667,7 @@ module BeakerHostGenerator
|
|
1651
1667
|
:general => {
|
1652
1668
|
'platform' => 'windows-10ent-32',
|
1653
1669
|
'packaging_platform' => 'windows-2012-x86',
|
1654
|
-
'ruby_arch'
|
1670
|
+
'ruby_arch' => 'x86'
|
1655
1671
|
},
|
1656
1672
|
:vmpooler => {
|
1657
1673
|
'template' => 'win-10-next-i386'
|
@@ -1661,7 +1677,7 @@ module BeakerHostGenerator
|
|
1661
1677
|
:general => {
|
1662
1678
|
'platform' => 'windows-10ent-64',
|
1663
1679
|
'packaging_platform' => 'windows-2012-x64',
|
1664
|
-
'ruby_arch'
|
1680
|
+
'ruby_arch' => 'x64'
|
1665
1681
|
},
|
1666
1682
|
:vmpooler => {
|
1667
1683
|
'template' => 'win-10-next-x86_64'
|
@@ -1671,7 +1687,7 @@ module BeakerHostGenerator
|
|
1671
1687
|
:general => {
|
1672
1688
|
'platform' => 'windows-10pro-64',
|
1673
1689
|
'packaging_platform' => 'windows-2012-x64',
|
1674
|
-
'ruby_arch'
|
1690
|
+
'ruby_arch' => 'x64'
|
1675
1691
|
},
|
1676
1692
|
:vmpooler => {
|
1677
1693
|
'template' => 'win-10-pro-x86_64'
|
@@ -1681,7 +1697,7 @@ module BeakerHostGenerator
|
|
1681
1697
|
:general => {
|
1682
1698
|
'platform' => 'windows-10ent-64',
|
1683
1699
|
'packaging_platform' => 'windows-2012-x64',
|
1684
|
-
'ruby_arch'
|
1700
|
+
'ruby_arch' => 'x64'
|
1685
1701
|
},
|
1686
1702
|
:vmpooler => {
|
1687
1703
|
'template' => 'win-10-1511-x86_64'
|
@@ -1691,7 +1707,7 @@ module BeakerHostGenerator
|
|
1691
1707
|
:general => {
|
1692
1708
|
'platform' => 'windows-10ent-64',
|
1693
1709
|
'packaging_platform' => 'windows-2012-x64',
|
1694
|
-
'ruby_arch'
|
1710
|
+
'ruby_arch' => 'x64'
|
1695
1711
|
},
|
1696
1712
|
:vmpooler => {
|
1697
1713
|
'template' => 'win-10-1607-x86_64'
|
@@ -1701,11 +1717,21 @@ module BeakerHostGenerator
|
|
1701
1717
|
:general => {
|
1702
1718
|
'platform' => 'windows-10ent-64',
|
1703
1719
|
'packaging_platform' => 'windows-2012-x64',
|
1704
|
-
'ruby_arch'
|
1720
|
+
'ruby_arch' => 'x64'
|
1705
1721
|
},
|
1706
1722
|
:vmpooler => {
|
1707
1723
|
'template' => 'win-10-1809-x86_64'
|
1708
1724
|
}
|
1725
|
+
},
|
1726
|
+
'windows11ent-64' => {
|
1727
|
+
:general => {
|
1728
|
+
'platform' => 'windows-11ent-64',
|
1729
|
+
'packaging_platform' => 'windows-2012-x64',
|
1730
|
+
'ruby_arch' => 'x64'
|
1731
|
+
},
|
1732
|
+
:vmpooler => {
|
1733
|
+
'template' => 'win-11-ent-x86_64'
|
1734
|
+
}
|
1709
1735
|
}
|
1710
1736
|
})
|
1711
1737
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-hostgenerator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-09-12 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|