Skip to content

Commit

Permalink
WIP CI
Browse files Browse the repository at this point in the history
  • Loading branch information
philippewarren committed Dec 16, 2024
1 parent ddfee4a commit 87e35ef
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ elseif(UNIX)
endif()

set(archive_stem webrtc-native-build-macos-${SW_VERS_VERSION_SHORT}-${architecture}-${CMAKE_BUILD_TYPE}-${webrtc_native_build_version})
set(webrtc_native_build_version ${webrtc_native_build_version}_test)
else(APPLE)
# Taken from : https://stackoverflow.com/questions/26919334/detect-underlying-platform-flavour-in-cmake
function(get_linux_lsb_release_information)
Expand Down Expand Up @@ -65,7 +64,11 @@ endif()

set(archive_name ${archive_stem}.${archive_extension})

set(webrtc_native_build_archive_url "https://github.com/introlab/webrtc-native-build/releases/download/${webrtc_native_build_version}/${archive_name}")
if(APPLE)
set(webrtc_native_build_archive_url "https://github.com/introlab/webrtc-native-build/releases/download/${webrtc_native_build_version}_test/${archive_name}")
else()
set(webrtc_native_build_archive_url "https://github.com/introlab/webrtc-native-build/releases/download/${webrtc_native_build_version}/${archive_name}")
endif()

if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/${archive_name})
message(STATUS "Downloading : ${webrtc_native_build_archive_url}")
Expand Down

0 comments on commit 87e35ef

Please sign in to comment.