Fixed more errors caught while integration testing

pull/6/head
Ubuntu20.04 2020-10-22 08:53:36 -07:00 committed by Rajath Ganesh
parent e96efce801
commit 9092caee77
3 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,7 @@ class Link:
if path.exists("evio"): if path.exists("evio"):
self.dir_path = os.getcwd()[0:] self.dir_path = os.getcwd()[0:]
else: else:
self.dir_path = os.getcwd()[0:]
git.Git(self.dir_path).clone("https://github.com/EdgeVPNio/evio.git") git.Git(self.dir_path).clone("https://github.com/EdgeVPNio/evio.git")
self.evio_repo = git.Repo(str(self.dir_path) + "/evio") self.evio_repo = git.Repo(str(self.dir_path) + "/evio")
@ -79,3 +80,4 @@ class Link:
if __name__ == "__main__": if __name__ == "__main__":
link = Link() link = Link()
link.main() link.main()

View File

@ -151,6 +151,7 @@ function build_webrtc()
wd=$(pwd) wd=$(pwd)
cd $WorkspaceRoot cd $WorkspaceRoot
chmod +x $Build_WRTC $Get_Archives $Get_Include chmod +x $Build_WRTC $Get_Archives $Get_Include
echo "Building webrtc with" "$1" "$2"
if ! $Build_WRTC -b "$1" -t "$2" if ! $Build_WRTC -b "$1" -t "$2"
then then
cd $WorkspaceRoot cd $WorkspaceRoot

View File

@ -32,6 +32,7 @@ copyHeaders webrtc-checkout/src/third_party/jsoncpp/source/include/json out/incl
copyHeaders webrtc-checkout/src/third_party/jsoncpp/generated/version.h out/include/json copyHeaders webrtc-checkout/src/third_party/jsoncpp/generated/version.h out/include/json
copyHeaders webrtc-checkout/src/common_types.h out/include/webrtc copyHeaders webrtc-checkout/src/common_types.h out/include/webrtc
copyHeaders webrtc-checkout/src/third_party/ffmpeg/libavcodec/jni.h out/include/webrtc copyHeaders webrtc-checkout/src/third_party/ffmpeg/libavcodec/jni.h out/include/webrtc
#files other than *.h #files other than *.h
mkdir -p out/include/libc++ mkdir -p out/include/libc++
mkdir -p out/include/libc++abi mkdir -p out/include/libc++abi