beaker-hostgenerator 1.12.0 → 1.15.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 +54 -44
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '093ad2b5a2bb603ab77d2a0aab6937fae4d85d7300623ac238ee5b21799572b1'
|
4
|
+
data.tar.gz: 813b8cd7d74ea3da29338cd22a9e6e7721a41de28e1dd34d394aff3d4c9b20d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d77e59b462f9802798aa851396e2541566fd44b52ae7c1039619d2250828cce9e975d095b7f90a351532c4915bbc71576cd3b552549cb82eecd9522f45c0b69e
|
7
|
+
data.tar.gz: cf21c8fd05287bc944e3aa0ac21300bf25457bd363723c3661d893e051fe01558135eac91521c20786126774721f6e3e06946dc093ae6a8de25a70199f267e72
|
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.15.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.15.0) (2022-06-23)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.14.0...1.15.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Add Windows 11 Enterprise, Fedora 36 [\#253](https://github.com/voxpupuli/beaker-hostgenerator/pull/253) ([mhashizume](https://github.com/mhashizume))
|
12
|
+
|
13
|
+
## [1.14.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.14.0) (2022-05-30)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.13.0...1.14.0)
|
16
|
+
|
17
|
+
**Implemented enhancements:**
|
18
|
+
|
19
|
+
- Add Ubuntu 22.04 [\#248](https://github.com/voxpupuli/beaker-hostgenerator/pull/248) ([jkroepke](https://github.com/jkroepke))
|
20
|
+
|
21
|
+
## [1.13.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.13.0) (2022-05-25)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.12.0...1.13.0)
|
24
|
+
|
25
|
+
**Implemented enhancements:**
|
26
|
+
|
27
|
+
- \(IMAGES-1339\) Add Ubuntu 22.04 support [\#249](https://github.com/voxpupuli/beaker-hostgenerator/pull/249) ([cthorn42](https://github.com/cthorn42))
|
28
|
+
|
5
29
|
## [1.12.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.12.0) (2022-02-21)
|
6
30
|
|
7
31
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.1...1.12.0)
|
@@ -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"] = {
|
@@ -103,7 +103,7 @@ module BeakerHostGenerator
|
|
103
103
|
# Ubuntu
|
104
104
|
#
|
105
105
|
# Generate LTS platforms
|
106
|
-
(14..
|
106
|
+
(14..22).select(&:even?).each do |release|
|
107
107
|
# 32 bit support was dropped in Ubuntu 18.04
|
108
108
|
if release < 18
|
109
109
|
result["ubuntu#{release}04-32"] = {
|
@@ -1275,7 +1275,7 @@ module BeakerHostGenerator
|
|
1275
1275
|
:general => {
|
1276
1276
|
'platform' => 'windows-2008-64',
|
1277
1277
|
'packaging_platform' => 'windows-2012-x64',
|
1278
|
-
'ruby_arch'
|
1278
|
+
'ruby_arch' => 'x64'
|
1279
1279
|
},
|
1280
1280
|
:vmpooler => {
|
1281
1281
|
'template' => 'win-2008-x86_64'
|
@@ -1285,7 +1285,7 @@ module BeakerHostGenerator
|
|
1285
1285
|
:general => {
|
1286
1286
|
'platform' => 'windows-2008-64',
|
1287
1287
|
'packaging_platform' => 'windows-2012-x64',
|
1288
|
-
'ruby_arch'
|
1288
|
+
'ruby_arch' => 'x86'
|
1289
1289
|
},
|
1290
1290
|
:vmpooler => {
|
1291
1291
|
'template' => 'win-2008-x86_64'
|
@@ -1295,7 +1295,7 @@ module BeakerHostGenerator
|
|
1295
1295
|
:general => {
|
1296
1296
|
'platform' => 'windows-2008r2-64',
|
1297
1297
|
'packaging_platform' => 'windows-2012-x64',
|
1298
|
-
'ruby_arch'
|
1298
|
+
'ruby_arch' => 'x64'
|
1299
1299
|
},
|
1300
1300
|
:vmpooler => {
|
1301
1301
|
'template' => 'win-2008r2-x86_64'
|
@@ -1305,7 +1305,7 @@ module BeakerHostGenerator
|
|
1305
1305
|
:general => {
|
1306
1306
|
'platform' => 'windows-2008r2-64',
|
1307
1307
|
'packaging_platform' => 'windows-2012-x64',
|
1308
|
-
'ruby_arch'
|
1308
|
+
'ruby_arch' => 'x86'
|
1309
1309
|
},
|
1310
1310
|
:vmpooler => {
|
1311
1311
|
'template' => 'win-2008r2-x86_64'
|
@@ -1315,7 +1315,7 @@ module BeakerHostGenerator
|
|
1315
1315
|
:general => {
|
1316
1316
|
'platform' => 'windows-2012-64',
|
1317
1317
|
'packaging_platform' => 'windows-2012-x64',
|
1318
|
-
'ruby_arch'
|
1318
|
+
'ruby_arch' => 'x64'
|
1319
1319
|
},
|
1320
1320
|
:vmpooler => {
|
1321
1321
|
'template' => 'win-2012-x86_64'
|
@@ -1325,7 +1325,7 @@ module BeakerHostGenerator
|
|
1325
1325
|
:general => {
|
1326
1326
|
'platform' => 'windows-2012-64',
|
1327
1327
|
'packaging_platform' => 'windows-2012-x64',
|
1328
|
-
'ruby_arch'
|
1328
|
+
'ruby_arch' => 'x86'
|
1329
1329
|
},
|
1330
1330
|
:vmpooler => {
|
1331
1331
|
'template' => 'win-2012-x86_64'
|
@@ -1335,7 +1335,7 @@ module BeakerHostGenerator
|
|
1335
1335
|
:general => {
|
1336
1336
|
'platform' => 'windows-2012r2-64',
|
1337
1337
|
'packaging_platform' => 'windows-2012-x64',
|
1338
|
-
'ruby_arch'
|
1338
|
+
'ruby_arch' => 'x64'
|
1339
1339
|
},
|
1340
1340
|
:vmpooler => {
|
1341
1341
|
'template' => 'win-2012r2-x86_64'
|
@@ -1345,7 +1345,7 @@ module BeakerHostGenerator
|
|
1345
1345
|
:general => {
|
1346
1346
|
'platform' => 'windows-2012r2-64',
|
1347
1347
|
'packaging_platform' => 'windowsfips-2012-x64',
|
1348
|
-
'ruby_arch'
|
1348
|
+
'ruby_arch' => 'x64'
|
1349
1349
|
},
|
1350
1350
|
:vmpooler => {
|
1351
1351
|
'template' => 'win-2012r2-fips-x86_64'
|
@@ -1355,7 +1355,7 @@ module BeakerHostGenerator
|
|
1355
1355
|
:general => {
|
1356
1356
|
'platform' => 'windows-2012r2-64',
|
1357
1357
|
'packaging_platform' => 'windowsfips-2012-x64',
|
1358
|
-
'ruby_arch'
|
1358
|
+
'ruby_arch' => 'x64'
|
1359
1359
|
},
|
1360
1360
|
:vmpooler => {
|
1361
1361
|
'template' => 'win-2012r2-fips-x86_64'
|
@@ -1365,7 +1365,7 @@ module BeakerHostGenerator
|
|
1365
1365
|
:general => {
|
1366
1366
|
'platform' => 'windows-2012r2-64',
|
1367
1367
|
'packaging_platform' => 'windows-2012-x64',
|
1368
|
-
'ruby_arch'
|
1368
|
+
'ruby_arch' => 'x86'
|
1369
1369
|
},
|
1370
1370
|
:vmpooler => {
|
1371
1371
|
'template' => 'win-2012r2-x86_64'
|
@@ -1375,7 +1375,7 @@ module BeakerHostGenerator
|
|
1375
1375
|
:general => {
|
1376
1376
|
'platform' => 'windows-2012r2-64',
|
1377
1377
|
'packaging_platform' => 'windows-2012-x64',
|
1378
|
-
'ruby_arch'
|
1378
|
+
'ruby_arch' => 'x64'
|
1379
1379
|
},
|
1380
1380
|
:vmpooler => {
|
1381
1381
|
'template' => 'win-2012r2-wmf5-x86_64'
|
@@ -1385,7 +1385,7 @@ module BeakerHostGenerator
|
|
1385
1385
|
:general => {
|
1386
1386
|
'platform' => 'windows-2012r2-64',
|
1387
1387
|
'packaging_platform' => 'windows-2012-x64',
|
1388
|
-
'ruby_arch'
|
1388
|
+
'ruby_arch' => 'x64'
|
1389
1389
|
},
|
1390
1390
|
:vmpooler => {
|
1391
1391
|
'template' => 'win-2012r2-ja-x86_64',
|
@@ -1396,7 +1396,7 @@ module BeakerHostGenerator
|
|
1396
1396
|
:general => {
|
1397
1397
|
'platform' => 'windows-2012r2-64',
|
1398
1398
|
'packaging_platform' => 'windows-2012-x64',
|
1399
|
-
'ruby_arch'
|
1399
|
+
'ruby_arch' => 'x86'
|
1400
1400
|
},
|
1401
1401
|
:vmpooler => {
|
1402
1402
|
'template' => 'win-2012r2-ja-x86_64',
|
@@ -1407,7 +1407,7 @@ module BeakerHostGenerator
|
|
1407
1407
|
:general => {
|
1408
1408
|
'platform' => 'windows-2012r2-64',
|
1409
1409
|
'packaging_platform' => 'windows-2012-x64',
|
1410
|
-
'ruby_arch'
|
1410
|
+
'ruby_arch' => 'x64'
|
1411
1411
|
},
|
1412
1412
|
:vmpooler => {
|
1413
1413
|
'template' => 'win-2012r2-fr-x86_64',
|
@@ -1419,7 +1419,7 @@ module BeakerHostGenerator
|
|
1419
1419
|
:general => {
|
1420
1420
|
'platform' => 'windows-2012r2-64',
|
1421
1421
|
'packaging_platform' => 'windows-2012-x64',
|
1422
|
-
'ruby_arch'
|
1422
|
+
'ruby_arch' => 'x86'
|
1423
1423
|
},
|
1424
1424
|
:vmpooler => {
|
1425
1425
|
'template' => 'win-2012r2-fr-x86_64',
|
@@ -1431,7 +1431,7 @@ module BeakerHostGenerator
|
|
1431
1431
|
:general => {
|
1432
1432
|
'platform' => 'windows-2012r2-64',
|
1433
1433
|
'packaging_platform' => 'windows-2012-x64',
|
1434
|
-
'ruby_arch'
|
1434
|
+
'ruby_arch' => 'x64'
|
1435
1435
|
},
|
1436
1436
|
:vmpooler => {
|
1437
1437
|
'template' => 'win-2012r2-core-x86_64'
|
@@ -1441,7 +1441,7 @@ module BeakerHostGenerator
|
|
1441
1441
|
:general => {
|
1442
1442
|
'platform' => 'windows-2012r2-64',
|
1443
1443
|
'packaging_platform' => 'windows-2012-x64',
|
1444
|
-
'ruby_arch'
|
1444
|
+
'ruby_arch' => 'x86'
|
1445
1445
|
},
|
1446
1446
|
:vmpooler => {
|
1447
1447
|
'template' => 'win-2012r2-core-x86_64'
|
@@ -1451,7 +1451,7 @@ module BeakerHostGenerator
|
|
1451
1451
|
:general => {
|
1452
1452
|
'platform' => 'windows-2016-64',
|
1453
1453
|
'packaging_platform' => 'windows-2012-x64',
|
1454
|
-
'ruby_arch'
|
1454
|
+
'ruby_arch' => 'x64'
|
1455
1455
|
},
|
1456
1456
|
:vmpooler => {
|
1457
1457
|
'template' => 'win-2016-x86_64'
|
@@ -1461,7 +1461,7 @@ module BeakerHostGenerator
|
|
1461
1461
|
:general => {
|
1462
1462
|
'platform' => 'windows-2016-64',
|
1463
1463
|
'packaging_platform' => 'windows-2012-x64',
|
1464
|
-
'ruby_arch'
|
1464
|
+
'ruby_arch' => 'x86'
|
1465
1465
|
},
|
1466
1466
|
:vmpooler => {
|
1467
1467
|
'template' => 'win-2016-x86_64'
|
@@ -1471,7 +1471,7 @@ module BeakerHostGenerator
|
|
1471
1471
|
:general => {
|
1472
1472
|
'platform' => 'windows-2016-64',
|
1473
1473
|
'packaging_platform' => 'windows-2012-x64',
|
1474
|
-
'ruby_arch'
|
1474
|
+
'ruby_arch' => 'x64'
|
1475
1475
|
},
|
1476
1476
|
:vmpooler => {
|
1477
1477
|
'template' => 'win-2016-core-x86_64'
|
@@ -1481,7 +1481,7 @@ module BeakerHostGenerator
|
|
1481
1481
|
:general => {
|
1482
1482
|
'platform' => 'windows-2016-64',
|
1483
1483
|
'packaging_platform' => 'windows-2012-x64',
|
1484
|
-
'ruby_arch'
|
1484
|
+
'ruby_arch' => 'x86'
|
1485
1485
|
},
|
1486
1486
|
:vmpooler => {
|
1487
1487
|
'template' => 'win-2016-core-x86_64'
|
@@ -1491,7 +1491,7 @@ module BeakerHostGenerator
|
|
1491
1491
|
:general => {
|
1492
1492
|
'platform' => 'windows-2016-64',
|
1493
1493
|
'packaging_platform' => 'windows-2012-x64',
|
1494
|
-
'ruby_arch'
|
1494
|
+
'ruby_arch' => 'x64'
|
1495
1495
|
},
|
1496
1496
|
:vmpooler => {
|
1497
1497
|
'template' => 'win-2016-fr-x86_64',
|
@@ -1503,7 +1503,7 @@ module BeakerHostGenerator
|
|
1503
1503
|
:general => {
|
1504
1504
|
'platform' => 'windows-2016-64',
|
1505
1505
|
'packaging_platform' => 'windows-2012-x64',
|
1506
|
-
'ruby_arch'
|
1506
|
+
'ruby_arch' => 'x86'
|
1507
1507
|
},
|
1508
1508
|
:vmpooler => {
|
1509
1509
|
'template' => 'win-2016-fr-x86_64',
|
@@ -1515,7 +1515,7 @@ module BeakerHostGenerator
|
|
1515
1515
|
:general => {
|
1516
1516
|
'platform' => 'windows-2019-64',
|
1517
1517
|
'packaging_platform' => 'windows-2012-x64',
|
1518
|
-
'ruby_arch'
|
1518
|
+
'ruby_arch' => 'x64'
|
1519
1519
|
},
|
1520
1520
|
:vmpooler => {
|
1521
1521
|
'template' => 'win-2019-x86_64'
|
@@ -1525,7 +1525,7 @@ module BeakerHostGenerator
|
|
1525
1525
|
:general => {
|
1526
1526
|
'platform' => 'windows-2019-64',
|
1527
1527
|
'packaging_platform' => 'windows-2012-x64',
|
1528
|
-
'ruby_arch'
|
1528
|
+
'ruby_arch' => 'x86'
|
1529
1529
|
},
|
1530
1530
|
:vmpooler => {
|
1531
1531
|
'template' => 'win-2019-x86_64'
|
@@ -1535,7 +1535,7 @@ module BeakerHostGenerator
|
|
1535
1535
|
:general => {
|
1536
1536
|
'platform' => 'windows-2019-64',
|
1537
1537
|
'packaging_platform' => 'windows-2012-x64',
|
1538
|
-
'ruby_arch'
|
1538
|
+
'ruby_arch' => 'x64'
|
1539
1539
|
},
|
1540
1540
|
:vmpooler => {
|
1541
1541
|
'template' => 'win-2019-ja-x86_64',
|
@@ -1546,7 +1546,7 @@ module BeakerHostGenerator
|
|
1546
1546
|
:general => {
|
1547
1547
|
'platform' => 'windows-2019-64',
|
1548
1548
|
'packaging_platform' => 'windows-2012-x64',
|
1549
|
-
'ruby_arch'
|
1549
|
+
'ruby_arch' => 'x86'
|
1550
1550
|
},
|
1551
1551
|
:vmpooler => {
|
1552
1552
|
'template' => 'win-2019-ja-x86_64',
|
@@ -1557,7 +1557,7 @@ module BeakerHostGenerator
|
|
1557
1557
|
:general => {
|
1558
1558
|
'platform' => 'windows-2019-64',
|
1559
1559
|
'packaging_platform' => 'windows-2012-x64',
|
1560
|
-
'ruby_arch'
|
1560
|
+
'ruby_arch' => 'x64'
|
1561
1561
|
},
|
1562
1562
|
:vmpooler => {
|
1563
1563
|
'template' => 'win-2019-fr-x86_64',
|
@@ -1569,7 +1569,7 @@ module BeakerHostGenerator
|
|
1569
1569
|
:general => {
|
1570
1570
|
'platform' => 'windows-2019-64',
|
1571
1571
|
'packaging_platform' => 'windows-2012-x64',
|
1572
|
-
'ruby_arch'
|
1572
|
+
'ruby_arch' => 'x86'
|
1573
1573
|
},
|
1574
1574
|
:vmpooler => {
|
1575
1575
|
'template' => 'win-2019-fr-x86_64',
|
@@ -1581,7 +1581,7 @@ module BeakerHostGenerator
|
|
1581
1581
|
:general => {
|
1582
1582
|
'platform' => 'windows-2019-64',
|
1583
1583
|
'packaging_platform' => 'windows-2012-x64',
|
1584
|
-
'ruby_arch'
|
1584
|
+
'ruby_arch' => 'x64'
|
1585
1585
|
},
|
1586
1586
|
:vmpooler => {
|
1587
1587
|
'template' => 'win-2019-core-x86_64'
|
@@ -1591,7 +1591,7 @@ module BeakerHostGenerator
|
|
1591
1591
|
:general => {
|
1592
1592
|
'platform' => 'windows-2019-64',
|
1593
1593
|
'packaging_platform' => 'windows-2012-x64',
|
1594
|
-
'ruby_arch'
|
1594
|
+
'ruby_arch' => 'x86'
|
1595
1595
|
},
|
1596
1596
|
:vmpooler => {
|
1597
1597
|
'template' => 'win-2019-core-x86_64'
|
@@ -1601,7 +1601,7 @@ module BeakerHostGenerator
|
|
1601
1601
|
:general => {
|
1602
1602
|
'platform' => 'windows-2022-64',
|
1603
1603
|
'packaging_platform' => 'windows-2012-x64',
|
1604
|
-
'ruby_arch'
|
1604
|
+
'ruby_arch' => 'x64'
|
1605
1605
|
},
|
1606
1606
|
:vmpooler => {
|
1607
1607
|
'template' => 'win-2022-x86_64'
|
@@ -1611,7 +1611,7 @@ module BeakerHostGenerator
|
|
1611
1611
|
:general => {
|
1612
1612
|
'platform' => 'windows-7-64',
|
1613
1613
|
'packaging_platform' => 'windows-2012-x64',
|
1614
|
-
'ruby_arch'
|
1614
|
+
'ruby_arch' => 'x64'
|
1615
1615
|
},
|
1616
1616
|
:vmpooler => {
|
1617
1617
|
'template' => 'win-7-x86_64'
|
@@ -1621,7 +1621,7 @@ module BeakerHostGenerator
|
|
1621
1621
|
:general => {
|
1622
1622
|
'platform' => 'windows-8.1-64',
|
1623
1623
|
'packaging_platform' => 'windows-2012-x64',
|
1624
|
-
'ruby_arch'
|
1624
|
+
'ruby_arch' => 'x64'
|
1625
1625
|
},
|
1626
1626
|
:vmpooler => {
|
1627
1627
|
'template' => 'win-81-x86_64'
|
@@ -1631,7 +1631,7 @@ module BeakerHostGenerator
|
|
1631
1631
|
:general => {
|
1632
1632
|
'platform' => 'windows-10ent-32',
|
1633
1633
|
'packaging_platform' => 'windows-2012-x86',
|
1634
|
-
'ruby_arch'
|
1634
|
+
'ruby_arch' => 'x86'
|
1635
1635
|
},
|
1636
1636
|
:vmpooler => {
|
1637
1637
|
'template' => 'win-10-ent-i386'
|
@@ -1641,7 +1641,7 @@ module BeakerHostGenerator
|
|
1641
1641
|
:general => {
|
1642
1642
|
'platform' => 'windows-10ent-64',
|
1643
1643
|
'packaging_platform' => 'windows-2012-x64',
|
1644
|
-
'ruby_arch'
|
1644
|
+
'ruby_arch' => 'x64'
|
1645
1645
|
},
|
1646
1646
|
:vmpooler => {
|
1647
1647
|
'template' => 'win-10-ent-x86_64'
|
@@ -1651,7 +1651,7 @@ module BeakerHostGenerator
|
|
1651
1651
|
:general => {
|
1652
1652
|
'platform' => 'windows-10ent-32',
|
1653
1653
|
'packaging_platform' => 'windows-2012-x86',
|
1654
|
-
'ruby_arch'
|
1654
|
+
'ruby_arch' => 'x86'
|
1655
1655
|
},
|
1656
1656
|
:vmpooler => {
|
1657
1657
|
'template' => 'win-10-next-i386'
|
@@ -1661,7 +1661,7 @@ module BeakerHostGenerator
|
|
1661
1661
|
:general => {
|
1662
1662
|
'platform' => 'windows-10ent-64',
|
1663
1663
|
'packaging_platform' => 'windows-2012-x64',
|
1664
|
-
'ruby_arch'
|
1664
|
+
'ruby_arch' => 'x64'
|
1665
1665
|
},
|
1666
1666
|
:vmpooler => {
|
1667
1667
|
'template' => 'win-10-next-x86_64'
|
@@ -1671,7 +1671,7 @@ module BeakerHostGenerator
|
|
1671
1671
|
:general => {
|
1672
1672
|
'platform' => 'windows-10pro-64',
|
1673
1673
|
'packaging_platform' => 'windows-2012-x64',
|
1674
|
-
'ruby_arch'
|
1674
|
+
'ruby_arch' => 'x64'
|
1675
1675
|
},
|
1676
1676
|
:vmpooler => {
|
1677
1677
|
'template' => 'win-10-pro-x86_64'
|
@@ -1681,7 +1681,7 @@ module BeakerHostGenerator
|
|
1681
1681
|
:general => {
|
1682
1682
|
'platform' => 'windows-10ent-64',
|
1683
1683
|
'packaging_platform' => 'windows-2012-x64',
|
1684
|
-
'ruby_arch'
|
1684
|
+
'ruby_arch' => 'x64'
|
1685
1685
|
},
|
1686
1686
|
:vmpooler => {
|
1687
1687
|
'template' => 'win-10-1511-x86_64'
|
@@ -1691,7 +1691,7 @@ module BeakerHostGenerator
|
|
1691
1691
|
:general => {
|
1692
1692
|
'platform' => 'windows-10ent-64',
|
1693
1693
|
'packaging_platform' => 'windows-2012-x64',
|
1694
|
-
'ruby_arch'
|
1694
|
+
'ruby_arch' => 'x64'
|
1695
1695
|
},
|
1696
1696
|
:vmpooler => {
|
1697
1697
|
'template' => 'win-10-1607-x86_64'
|
@@ -1701,11 +1701,21 @@ module BeakerHostGenerator
|
|
1701
1701
|
:general => {
|
1702
1702
|
'platform' => 'windows-10ent-64',
|
1703
1703
|
'packaging_platform' => 'windows-2012-x64',
|
1704
|
-
'ruby_arch'
|
1704
|
+
'ruby_arch' => 'x64'
|
1705
1705
|
},
|
1706
1706
|
:vmpooler => {
|
1707
1707
|
'template' => 'win-10-1809-x86_64'
|
1708
1708
|
}
|
1709
|
+
},
|
1710
|
+
'windows11ent-64' => {
|
1711
|
+
:general => {
|
1712
|
+
'platform' => 'windows-11ent-64',
|
1713
|
+
'packaging_platform' => 'windows-2012-x64',
|
1714
|
+
'ruby_arch' => 'x64'
|
1715
|
+
},
|
1716
|
+
:vmpooler => {
|
1717
|
+
'template' => 'win-11-ent-x86_64'
|
1718
|
+
}
|
1709
1719
|
}
|
1710
1720
|
})
|
1711
1721
|
|
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.15.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-06-23 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|
@@ -208,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
208
|
- !ruby/object:Gem::Version
|
209
209
|
version: '0'
|
210
210
|
requirements: []
|
211
|
-
rubygems_version: 3.2.
|
211
|
+
rubygems_version: 3.2.33
|
212
212
|
signing_key:
|
213
213
|
specification_version: 4
|
214
214
|
summary: Beaker Host Generator Utility
|