78 строки
2.7 KiB
Plaintext
Executable File
78 строки
2.7 KiB
Plaintext
Executable File
#!/usr/bin/env /Library/Frameworks/Mono.framework/Commands/csharp
|
|
|
|
// this script is to make sure our versions.plist files are not out of date with our min/max supported OS versions.
|
|
|
|
// arguments are: plistPath iOSMinVersion iOSMaxVersion tvOSMinVersion tvOSMaxVersion watchOSMinVersion watchOSMaxVersion macOSMinVersion macOSMaxVersion
|
|
|
|
using System.IO;
|
|
using System.Xml;
|
|
|
|
var args = Environment.GetCommandLineArgs ();
|
|
if (args.Length != 11 /* 2 default + 9 real */) {
|
|
// first arg is "/Library/Frameworks/Mono.framework/Versions/4.8.0/lib/mono/4.5/csharp.exe"
|
|
// second arg the script itself
|
|
// then comes the ones we care about
|
|
Console.WriteLine ("Need 9 arguments, got {0}", args.Length - 2);
|
|
Environment.Exit (1);
|
|
return;
|
|
}
|
|
|
|
var plistPath = args [2];
|
|
var iOSMin = args [3];
|
|
var iOSMax = args [4];
|
|
var tvOSMin = args [5];
|
|
var tvOSMax = args [6];
|
|
var watchOSMin = args [7];
|
|
var watchOSMax = args [8];
|
|
var macOSMin = args [9];
|
|
var macOSMax = args [10];
|
|
|
|
var doc = new System.Xml.XmlDocument ();
|
|
doc.Load (plistPath);
|
|
|
|
var failed = false;
|
|
|
|
var check = new Action<string, string, string> ((product, min, max) =>
|
|
{
|
|
var minVersion = Version.Parse (min);
|
|
var maxVersion = Version.Parse (max);
|
|
var foundMax = false;
|
|
var foundMin = false;
|
|
var versions = doc.SelectNodes ($"/plist/dict/key[text()='KnownVersions']/following-sibling::dict[1]/key[text()='{product}']/following-sibling::array[1]/string");
|
|
if (versions.Count == 0) {
|
|
// Skip this (iOS/tvOS/watchOS versions for macOS, or vice versa)
|
|
return;
|
|
}
|
|
foreach (XmlNode node in versions) {
|
|
// Console.WriteLine ($"{product}: checking: {node.InnerText}");
|
|
var v = node.InnerText;
|
|
var version = Version.Parse (v);
|
|
if (version < minVersion) {
|
|
Console.Error.WriteLine ($"Found the {product} version {v} in {Path.GetFileName (plistPath)}, but it's smaller than the supported min {product} version we support ({min}).");
|
|
failed = true;
|
|
} else if (version > maxVersion) {
|
|
Console.Error.WriteLine ($"Found the {product} version {v} in {Path.GetFileName (plistPath)}, but it's higher than the supported max {product} version we support ({max}).");
|
|
failed = true;
|
|
} else if (version == maxVersion) {
|
|
foundMax = true;
|
|
} else if (version == minVersion) {
|
|
foundMin = true;
|
|
}
|
|
}
|
|
if (!foundMax) {
|
|
Console.Error.WriteLine ($"Could not find the max {product} version {max} in {Path.GetFileName (plistPath)}.");
|
|
failed = true;
|
|
}
|
|
if (!foundMin) {
|
|
Console.Error.WriteLine ($"Could not find the min {product} version {min} in {Path.GetFileName (plistPath)}.");
|
|
failed = true;
|
|
}
|
|
});
|
|
|
|
check ("iOS", iOSMin, iOSMax);
|
|
check ("tvOS", tvOSMin, tvOSMax);
|
|
check ("watchOS", watchOSMin, watchOSMax);
|
|
check ("macOS", macOSMin, macOSMax);
|
|
|
|
Environment.Exit (failed ? 1 : 0);
|