Skip to content

Commit 8de5163

Browse files
ltrungmichhyun1
authored andcommitted
Fix maven installation in GitHub actions
1 parent d735018 commit 8de5163

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

integration/js/script/install-kite

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
#!/bin/bash
22
set -o xtrace
33

4-
cd ~/build
5-
64
mkdir GitHub
75
cd GitHub
86
git clone https://github.com/webrtc/KITE.git
97
cd KITE
108
git checkout e9296165cd24bea92cddb59f2bf211c99f764d58
119

1210
chmod -R +x scripts/linux
11+
printf "n\n3.6.3" | ./scripts/linux/installMaven.sh
12+
#This is a temporary hack since maven 3.8.1 which is the default for GitHub Action VM does not work with kite
13+
export PATH=~/apache-maven-3.6.3/bin:$PATH
14+
source ~/.bashrc
15+
echo `mvn --version`
1316

1417
chmod +x configureLinux.sh
1518
yes n | ./configureLinux.sh
1619

1720
cd KITE-AppRTC-Test
18-
../scripts/linux/path/c all > /dev/null
21+
../scripts/linux/path/c all

0 commit comments

Comments
 (0)