-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathProcessRunner.swift
43 lines (37 loc) · 1.29 KB
/
ProcessRunner.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//
// Copyright Amazon.com Inc. or its affiliates.
// All Rights Reserved.
//
// SPDX-License-Identifier: Apache-2.0
//
import Foundation
struct ProcessRunner {
static func runProcess(
executable: String = "/usr/bin/env",
arguments: [String]
) -> String {
let process = Process()
process.executableURL = URL(fileURLWithPath: executable)
process.arguments = arguments
let outputPipe = Pipe()
process.standardOutput = outputPipe
process.standardError = Pipe()
do {
try process.run()
process.waitUntilExit()
let outputData = outputPipe.fileHandleForReading.readDataToEndOfFile()
return String(data: outputData, encoding: .utf8)?.trimmingCharacters(in: .whitespacesAndNewlines) ?? ""
} catch {
print("ProcessRunner Error: \(error.localizedDescription)")
return ""
}
}
/// Retrieves the current Git commit ID.
static func getGitCommitId() -> String {
return ProcessRunner.runProcess(arguments: ["git", "rev-parse", "HEAD"])
}
/// Retrieves the SDK version from a file.
static func getSdkVersion() -> String {
return ProcessRunner.runProcess(arguments: ["cat", "../../aws-sdk-swift/Package.version"])
}
}