Skip to content

feat: support pr test,and support x86_64 #3

feat: support pr test,and support x86_64

feat: support pr test,and support x86_64 #3

Workflow file for this run

name: Pull Request Test
on:
pull_request:
branches: [ "main" ] # 监听针对 main 分支的 PR
jobs:
build-and-test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
run: |
xcodebuild clean build \
-project MacMusicPlayer.xcodeproj \
-scheme MacMusicPlayer \
-configuration Release \
-derivedDataPath build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
ONLY_ACTIVE_ARCH=NO \
ARCHS="x86_64 arm64"
- name: Verify Architectures
run: |
# 定义构建的应用程序路径
APP_PATH="build/Build/Products/Release/MacMusicPlayer.app"
echo "App Path: $APP_PATH"
# 检查应用程序是否存在
if [ ! -d "$APP_PATH" ]; then
echo "Error: Application not found at $APP_PATH"
exit 1
fi
# 查找可执行文件的路径
EXECUTABLE_PATH="$APP_PATH/Contents/MacOS/MacMusicPlayer"
echo "Executable Path: $EXECUTABLE_PATH"
# 显示可执行文件的架构信息
lipo -info "$EXECUTABLE_PATH"
# 验证是否支持 x86_64 架构
if lipo -info "$EXECUTABLE_PATH" | grep -q "x86_64"; then
echo "x86_64 architecture is supported."
else
echo "Error: x86_64 architecture is not supported!"
exit 1
fi
# 验证是否支持 arm64 架构
if lipo -info "$EXECUTABLE_PATH" | grep -q "arm64"; then
echo "arm64 architecture is supported."
else
echo "Error: arm64 architecture is not supported!"
exit 1
fi