Skip to content

Commit

Permalink
adding https proxy to mvn cmd (oap-project#347)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>

Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan authored Aug 31, 2022
1 parent 8f9ac04 commit bfd7d04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ jobs:
sudo apt-get install -y google-mock
- name: Install Gluten Velox-backend
run: |
mvn clean install -DskipTests -Pbackends-velox -Dbuild_protobuf=OFF -Dbuild_cpp=ON -Dbuild_velox=ON -Dbuild_velox_from_source=ON -Dbuild_gazelle_cpp=ON -Dbuild_arrow=ON -Dcpp_tests=ON -Dcpp_benchmarks=ON
mvn clean install -Dhttps.proxyHost=child-prc.intel.com -Dhttps.proxyPort=913 -DskipTests -Pbackends-velox -Dbuild_protobuf=OFF -Dbuild_cpp=ON -Dbuild_velox=ON -Dbuild_velox_from_source=ON -Dbuild_gazelle_cpp=ON -Dbuild_arrow=ON -Dcpp_tests=ON -Dcpp_benchmarks=ON
- name: Run unit tests
run: |
mvn test -Dcheckstyle.skip -Dexec.skip -Pbackends-velox
mvn test -Dcheckstyle.skip -Dexec.skip -Pbackends-velox -Dhttps.proxyHost=child-prc.intel.com -Dhttps.proxyPort=913
cd cpp/
mkdir -p build
cd build
Expand All @@ -89,7 +89,7 @@ jobs:
run: |
git clone -b main https://github.com/zhztheplayer/gluten-it.git gluten-it
cd gluten-it
mvn clean package
mvn clean package -Dhttps.proxyHost=child-prc.intel.com -Dhttps.proxyPort=913
java -Xmx5G -XX:ErrorFile=/var/log/java/hs_err_pid%p.log -cp target/gluten-it-1.0-SNAPSHOT-jar-with-dependencies.jar io.glutenproject.integration.tpc.h.Tpch \
--backend-type=velox --fixed-width-as-double --off-heap-size=10g -s=1.0 --cpus=4 --iterations=1 \
--queries=q1,q2,q3,q4,q5,q6,q7,q8,q9,q10,q11,q12,q13,q14,q15,q16,q17,q18,q19,q20,q21,q22
Expand Down

0 comments on commit bfd7d04

Please sign in to comment.