-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild_wireguard_go_bridge.sh
executable file
·110 lines (85 loc) · 3.22 KB
/
build_wireguard_go_bridge.sh
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/sh
# Skip this script when running SwiftUI previews
if [ "$XCODE_RUNNING_FOR_PREVIEWS" == "1" ]; then
echo "Skipping WireGuardTunnel for SwiftUI Previews"
exit 0
fi
# build_wireguard_go_bridge.sh - Builds WireGuardKitGo
#
# Figures out the directory where the wireguard-apple SPM package
# is checked out by Xcode (so that it works when building as well as
# archiving), then cd-s to the WireGuardKitGo directory
# and runs make there.
# Check if Go version is provided
if [ -z "$1" ]; then
echo "Error: Go version not specified."
echo "Usage: $0 <go_version>"
exit 1
fi
GO_VERSION=$1
# Function to install Go in a temporary directory
install_go() {
TEMP_DIR=$(mktemp -d)
# Determine the Go binary URL for macOS arm64
GO_TAR_URL="https://golang.org/dl/go${GO_VERSION}.darwin-arm64.tar.gz"
# Download the Go archive
echo "Downloading Go version ${GO_VERSION} for macOS arm64..."
curl -Lo "${TEMP_DIR}/go.tar.gz" "$GO_TAR_URL"
# Extract the Go archive to the temporary directory
echo "Extracting Go version ${GO_VERSION}..."
tar -C "$TEMP_DIR" -xzf "${TEMP_DIR}/go.tar.gz"
# Set the Go path temporarily
export PATH="${TEMP_DIR}/go/bin:$PATH"
# Verify the Go installation
go version || {
echo "Error: Failed to install Go."
exit 1
}
# Clean up by removing the downloaded tarball
rm -rf "${TEMP_DIR}/go.tar.gz"
}
# Check if Go is installed and has the correct version
current_go_version=$(go version 2>/dev/null | awk '{print $3}' | sed 's/go//')
if [ "$current_go_version" == "$GO_VERSION" ]; then
echo "Correct Go version (${GO_VERSION}) is already installed. Skipping installation."
else
echo "Go version mismatch (found: $current_go_version, expected: $GO_VERSION). Installing correct version..."
install_go
fi
# Prevent redundant builds by adding a caching marker
BUILD_ARTIFACT="$BUILD_DIR/WireGuardGoBridge.artifact"
if [ -f "$BUILD_ARTIFACT" ]; then
echo "WireGuardGoBridge already built. Skipping build step..."
exit 0
fi
# Proceed with the WireGuard build process
project_data_dir="$BUILD_DIR"
# The wireguard-apple README suggests using ${BUILD_DIR%Build/*}, which
# doesn't seem to work. So here, we do the equivalent in script.
while true; do
parent_dir=$(dirname "$project_data_dir")
basename=$(basename "$project_data_dir")
project_data_dir="$parent_dir"
if [ "$basename" = "Build" ]; then
break
fi
done
# The wireguard-apple README looks into
# SourcePackages/checkouts/wireguard-apple, but Xcode seems to place the
# sources in SourcePackages/checkouts/ so just playing it safe and
# trying both.
checkouts_dir="$project_data_dir"/SourcePackages/checkouts
if [ -e "$checkouts_dir"/wireguard-apple ]; then
checkouts_dir="$checkouts_dir"/wireguard-apple
fi
wireguard_go_dir="$checkouts_dir"/Sources/WireGuardKitGo
# Ensure Go is in the path, we append it to the PATH variable
export PATH="${PATH}:/usr/local/bin:$goPath"
# Change to the WireGuardKitGo directory and run `make`
cd "$wireguard_go_dir" && /usr/bin/make || {
echo "Error: Make failed in $wireguard_go_dir"
exit 1
}
# Create marker file to prevent redundant builds
touch "$BUILD_ARTIFACT"
echo "WireGuardGoBridge successfully built."