Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Strings format updated #20

Merged
merged 1 commit into from
Feb 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build_openvpnadapter_apple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Configure amnezia.xcconfig
run: |
WORKINGDIR=$(pwd)
echo "Configuring amnezia.xcconfig..."
echo "Configuring amnezia.xcconfig"
cat << EOF > $WORKINGDIR/OpenVPNAdapter/Configuration/amnezia.xcconfig
PROJECT_TEMP_DIR = $WORKINGDIR/OpenVPNAdapter/build/OpenVPNAdapter.build
CONFIGURATION_BUILD_DIR = $WORKINGDIR/OpenVPNAdapter/build/Release-macos
Expand All @@ -41,7 +41,7 @@ jobs:

- name: Build OpenVPNAdapter for macOS
run: |
echo "Building OpenVPNAdapter for macOS..."
echo "Building OpenVPNAdapter for macOS"
xcrun xcodebuild \
-project OpenVPNAdapter/OpenVPNAdapter.xcodeproj \
-xcconfig OpenVPNAdapter/Configuration/amnezia.xcconfig \
Expand All @@ -54,7 +54,7 @@ jobs:
run: |
export WORKINGDIR=`pwd`
if [ -d "$WORKINGDIR/OpenVPNAdapter/build/Release-macos/OpenVPNAdapter.framework" ]; then
echo "Generating checksums for OpenVPNAdapter.framework..."
echo "Generating checksums for OpenVPNAdapter.framework"
find $WORKINGDIR/OpenVPNAdapter/build/Release-macos \
-type f \
-exec sh -c 'openssl dgst -sha256 -r "$1" > "$1.sha256"' _ {} \;
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Configure amnezia.xcconfig
run: |
WORKINGDIR=$(pwd)
echo "Configuring amnezia.xcconfig..."
echo "Configuring amnezia.xcconfig"
cat << EOF > $WORKINGDIR/OpenVPNAdapter/Configuration/amnezia.xcconfig
PROJECT_TEMP_DIR = $WORKINGDIR/OpenVPNAdapter/build/OpenVPNAdapter.build
CONFIGURATION_BUILD_DIR = $WORKINGDIR/OpenVPNAdapter/build/Release-iphoneos
Expand All @@ -103,7 +103,7 @@ jobs:

- name: Build OpenVPNAdapter for iOS
run: |
echo "Building OpenVPNAdapter for iOS..."
echo "Building OpenVPNAdapter for iOS"
xcrun xcodebuild \
-project OpenVPNAdapter/OpenVPNAdapter.xcodeproj \
-xcconfig OpenVPNAdapter/Configuration/amnezia.xcconfig \
Expand All @@ -116,7 +116,7 @@ jobs:
run: |
export WORKINGDIR=`pwd`
if [ -d "$WORKINGDIR/OpenVPNAdapter/build/Release-iphoneos/OpenVPNAdapter.framework" ]; then
echo "Generating checksums for OpenVPNAdapter.framework..."
echo "Generating checksums for OpenVPNAdapter.framework"
find $WORKINGDIR/OpenVPNAdapter/build/Release-iphoneos \
-type f \
-exec sh -c 'openssl dgst -sha256 -r "$1" > "$1.sha256"' _ {} \;
Expand Down