您的位置 首页 Jenkins

构建ios 项目需要的脚本文件

构建ios 项目需要的脚本文件

 

debug.sh

#!/bin/sh

### 配置定义
PROJECT_NAME="KattGatt"

# 获取当前脚本路径
# basepath=$(cd `dirname $0`; pwd)

#CONFIGURATION="Debug"
CONFIGURATION="Release"

#工程名
WORKSPACE="KattGatt.xcworkspace"

#设置打包路径
PACKAGE_PATH="Package"

#archive path
XCARCHIVE_PATH="${PACKAGE_PATH}/xcarchive/${PROJECT_NAME}.xcarchive"

#ipa 路径
IPA_Path="${PACKAGE_PATH}/ipa"

#ipa名称
IPAFILE_NAME="${PROJECT_NAME}.ipa"

#导出ipa路径
EXPORT_PATH="${IPA_Path}/${IPAFILE_NAME}"

optionPlistName="ExportOptions"

# clean
echo "xcodebuild clean"
xcodebuild clean -workspace ${WORKSPACE} \
             	   -scheme ${PROJECT_NAME} \
                 -configuration ${CONFIGURATION} \
                 | xcpretty 




ls -al /Users/Shared/jenkins/workspace/IOS_KattGatt/Pods/Target\ Support\ Files/Pods-KattGatt/


 

copyfile

#!/bin/sh

### 配置定义



#复制 4个文件

#BarLineChartViewBase.swift

#LineChartRenderer.swift

#Renderer.swift

#HXPhoto3DTouchViewController.h
#HMACCommonCrypto.swift


out_project_path=/Users/Shared/jenkins/workspace/
PROJECT_NAME=IOS_KattGatt
out_project_path_all=${out_project_path}${PROJECT_NAME}

#out_project_path_all=.

echo ${out_project_path_all}

pwd


cp -rf /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift  ${out_project_path_all}/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift

echo ${out_project_path_all}/Pods/Charts/Source/Charts/Charts/BarLineChartViewBase.swift


cp -rf /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift  ${out_project_path_all}/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift

echo  ${out_project_path_all}/Pods/Charts/Source/Charts/Renderers/LineChartRenderer.swift


cp -rf /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/Charts/Source/Charts/Renderers/Renderer.swift  ${out_project_path_all}/Pods/Charts/Source/Charts/Renderers/Renderer.swift
echo ${out_project_path_all}/Pods/Charts/Source/Charts/Renderers/Renderer.swift


cp -rf  /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/HXPhotoPicker/HXPhotoPicker/Controller/HXPhoto3DTouchViewController.h   ${out_project_path_all}/Pods/HXPhotoPicker/HXPhotoPicker/Controller/HXPhoto3DTouchViewController.h
 echo ${out_project_path_all}/Pods/HXPhotoPicker/HXPhotoPicker/Controller/HXPhoto3DTouchViewController.h

 

cp -rf /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/JSONWebToken/Sources/HMACCommonCrypto.swift  ${out_project_path_all}/Pods/JSONWebToken/Sources/HMACCommonCrypto.swift
 echo ${out_project_path_all}/Pods/JSONWebToken/Sources/HMACCommonCrypto.swift


cp -rf /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/JSONWebToken/Sources/Base64.swift ${out_project_path_all}/Pods/JSONWebToken/Sources/Base64.swift
    
echo  ${out_project_path_all}/Pods/JSONWebToken/Sources/Base64.swift

cp -rf /Users/kattgatt/Desktop/kattgattios/KattGatt/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift ${out_project_path_all}/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift

echo ${out_project_path_all}/Pods/Charts/Source/Charts/Data/Implementations/Standard/ChartDataSet.swift


ExportOptions.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>compileBitcode</key>
	<true/>
	<key>destination</key>
	<string>export</string>
	<key>method</key>
	<string>ad-hoc</string>
	<key>signingStyle</key>
	<string>automatic</string>
	<key>stripSwiftSymbols</key>
	<true/>
	<key>teamID</key>
	<string>J8XV9324G8</string>
	<key>thinning</key>
	<string>&lt;none&gt;</string>
</dict>
</plist>

 

initpod.sh

#!/bin/sh
pwd
cp ../debug.sh .
cp ../ExportOptions.plist .
cp ../copyfile.sh .

rm -rf Podfile.lock
rm -rf Pods
rm -rf KattGatt.xcworkspace

source  ~/.profile

/Users/kattgatt/.rbenv/versions/3.2.2/bin/pod install 

sh copyfile.sh

echo "----------------"
pwd
sh debug.sh

 

pgyer_upload.sh

 

#!/bin/bash
#
# 通过shell脚本来实现将本地app文件通过API上传到蒲公英
# https://www.pgyer.com/doc/view/api#fastUploadApp
#

unset http_proxy
unset https_proxy

# Display log. 1=enable, 0=disable
LOG_ENABLE=1

printHelp() {
    echo "Usage: $0 -k <api_key> [OPTION]... file"
    echo "Upload iOS or Android app package file to PGYER."
    echo "Example: $0 -k xxxxxxxxxxxxxxx /data/app.ipa"
    echo ""
    echo "Description:"
    echo "  -k api_key                       (required) api key from PGYER"
    echo "  -t buildInstallType              build install type, 1=public, 2=password, 3=invite"
    echo "  -p buildPassword                 build password, required if buildInstallType=2"
    echo "  -d buildUpdateDescription        build update description"
    echo "  -e buildInstallDate              build install date, 1=buildInstallStartDate~buildInstallEndDate, 2=forever"
    echo "  -s buildInstallStartDate         build install start date, format: yyyy-MM-dd"
    echo "  -e buildInstallEndDate           build install end date, format: yyyy-MM-dd"
    echo "  -c buildChannelShortcut          build channel shortcut"
    echo "  -h help                          show this help"
    echo ""
    echo "Report bugs to: <https://github.com/PGYER/pgyer_api_example/issues>" 
    echo "Project home page: <https://github.com/PGYER/pgyer_api_example>" 
    exit 1
}

while getopts 'k:t:p:d:s:e:c:h' OPT; do
    case $OPT in
        k) api_key="$OPTARG";;
        t) buildInstallType="$OPTARG";;
        p) buildPassword="$OPTARG";;
        d) buildUpdateDescription="$OPTARG";;
        e) buildInstallDate="$OPTARG";;
        s) buildInstallStartDate="$OPTARG";;
        e) buildInstallEndDate="$OPTARG";;
        c) buildChannelShortcut="$OPTARG";;
        ?) printHelp;;
    esac
done

shift $(($OPTIND - 1))
readonly file=$1

# check api_key exists
if [ -z "$api_key" ]; then
    echo "api_key is empty"
    printHelp
fi

# check file exists
if [ ! -f "$file" ]; then
    echo "file not exists"
    printHelp
fi

# check ext supported
buildType=${file##*.}
if [ "$buildType" != "ipa" ] && [ "$buildType" != "apk" ]; then
    echo "file ext is not supported"
    printHelp
fi

# ---------------------------------------------------------------
# functions
# ---------------------------------------------------------------

log() {
    [ $LOG_ENABLE -eq 1 ]  && echo "[$(date +'%Y-%m-%d %H:%M:%S')] $*"
}

logTitle() {
    log "-------------------------------- $* --------------------------------"
}

execCommand() {
    log "$@"
    result=$(eval $@)
}

# ---------------------------------------------------------------
# 获取上传凭证
# ---------------------------------------------------------------

logTitle "获取凭证"

command="curl -s"
[ -n "$api_key" ]                && command="${command} --form-string '_api_key=${api_key}'";
[ -n "$buildType" ]              && command="${command} --form-string 'buildType=${buildType}'";
[ -n "$buildInstallType" ]       && command="${command} --form-string 'buildInstallType=${buildInstallType}'";
[ -n "$buildPassword" ]          && command="${command} --form-string 'buildPassword=${buildPassword}'";
[ -n "$buildUpdateDescription" ] && command="${command} --form-string $'buildUpdateDescription=${buildUpdateDescription}'";
[ -n "$buildInstallDate" ]       && command="${command} --form-string 'buildInstallDate=${buildInstallDate}'";
[ -n "$buildInstallStartDate" ]  && command="${command} --form-string 'buildInstallStartDate=${buildInstallStartDate}'";
[ -n "$buildInstallEndDate" ]    && command="${command} --form-string 'buildInstallEndDate=${buildInstallEndDate}'";
[ -n "$buildChannelShortcut" ]   && command="${command} --form-string 'buildChannelShortcut=${buildChannelShortcut}'";
command="${command} http://www.pgyer.com/apiv2/app/getCOSToken";
execCommand $command

[[ "${result}" =~ \"endpoint\":\"([\:\_\.\/\\A-Za-z0-9\-]+)\" ]] && endpoint=`echo ${BASH_REMATCH[1]} | sed 's!\\\/!/!g'`
[[ "${result}" =~ \"key\":\"([\.a-z0-9]+)\" ]] && key=`echo ${BASH_REMATCH[1]}`
[[ "${result}" =~ \"signature\":\"([\=\&\_\;A-Za-z0-9\-]+)\" ]] && signature=`echo ${BASH_REMATCH[1]}`
[[ "${result}" =~ \"x-cos-security-token\":\"([\_A-Za-z0-9\-]+)\" ]] && x_cos_security_token=`echo ${BASH_REMATCH[1]}`

if [ -z "$key" ] || [ -z "$signature" ] || [ -z "$x_cos_security_token" ] || [ -z "$endpoint" ]; then
    log "get upload token failed"
    exit 1
fi

# ---------------------------------------------------------------
# 上传文件
# ---------------------------------------------------------------

logTitle "上传文件"

file_name=${file##*/}

execCommand "curl -s -o /dev/null -w '%{http_code}' \
--form-string 'key=${key}' \
--form-string 'signature=${signature}' \
--form-string 'x-cos-security-token=${x_cos_security_token}' \
--form-string 'x-cos-meta-file-name=${file_name}' \
-F 'file=@${file}' ${endpoint}"
if [ $result -ne 204 ]; then # if http code != 204, upload failed
    log "Upload failed"
    exit 1
fi

# ---------------------------------------------------------------
# 检查结果
# ---------------------------------------------------------------

logTitle "检查结果"

for i in {1..60}; do
    execCommand "curl -s http://www.pgyer.com/apiv2/app/buildInfo?_api_key=${api_key}\&buildKey=${key}"
    [[ "${result}" =~ \"code\":([0-9]+) ]] && code=`echo ${BASH_REMATCH[1]}`
    if [ $code -eq 0 ]; then
        echo $result
        break
    else
        sleep 1
    fi
done

 

 

欢迎来撩 : 汇总all

白眉大叔

关于白眉大叔linux云计算: 白眉大叔

热门文章