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

feat: modify ci for windows #439

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
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
34 changes: 24 additions & 10 deletions .github/ci/build/build_windows.bat
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,19 @@ echo build_time: %build_time%
echo release_version: %release_version%
echo short_version: %short_version%
echo pwd: %cd%
echo sdk_url: %sdk_url%

echo init value sdk_url: %sdk_url%
setlocal enabledelayedexpansion
if "%sdk_url%"=="" (
REM Read sdk_url from install.ps1
for /f "tokens=2 delims=''" %%a in ('findstr /R "^ *\$agora_sdk = '" .\windows\APIExample\install.ps1') do (
set sdk_url=%%a
REM Remove the trailing single quote
set sdk_url=!sdk_url:'=!
REM Exit the loop after finding the first match
goto :FOUND
)
)
:FOUND
echo off
set zip_name=%sdk_url%
:LOOP
Expand All @@ -63,18 +74,21 @@ set zip_name=%part2%
goto LOOP
:END
echo on
echo sdk_url: %sdk_url%
echo part2: %part2%
echo zip_name: %zip_name%

dir

curl %sdk_url% -o %zip_name%
REM python %WORKSPACE%\\artifactory_utils.py --action=download_file --file=%sdk_url%
7z x ./%zip_name% -y
if %errorlevel% neq 0 (
echo Failed to download the file from %sdk_url%
) else (
echo Successfully downloaded the file from %sdk_url%
dir
rmdir /S /Q Agora_Native_SDK_for_Windows_FULL\demo
del /F /Q Agora_Native_SDK_for_Windows_FULL\commits
del /F /Q Agora_Native_SDK_for_Windows_FULL\package_size_report.txt
)

dir
rmdir /S /Q Agora_Native_SDK_for_Windows_FULL\demo
del /F /Q Agora_Native_SDK_for_Windows_FULL\commits
del /F /Q Agora_Native_SDK_for_Windows_FULL\package_size_report.txt
mkdir Agora_Native_SDK_for_Windows_FULL\samples
mkdir Agora_Native_SDK_for_Windows_FULL\samples\API-example
rmdir /S /Q windows\cicd
Expand Down
2 changes: 1 addition & 1 deletion windows/APIExample/install.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$agora_sdk = 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows_v4.5.0_FULL.zip'
$ThirdPartysrc = 'https://fullapp.oss-cn-beijing.aliyuncs.com/API-Examples/ThirdParty.zip'
$ThirdPartydes = 'ThirdParty.zip'
$agora_sdk = 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows_v4.5.0_FULL.zip'
$agora_des = 'AgoraSdk.zip'
$agora_local_sdk = '../../sdk'

Expand Down
Loading