Commit ea2e98f 1 parent 1a5f80b commit ea2e98f Copy full SHA for ea2e98f
File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ jobs:
100
100
101
101
test-python-2 :
102
102
docker :
103
- - image : hungpham2511/toppra-dep:0.0.2
103
+ - image : hungpham2511/toppra-dep:0.0.3
104
104
105
105
working_directory : ~/repo
106
106
@@ -138,7 +138,7 @@ jobs:
138
138
139
139
- run :
140
140
command : |
141
- cp /tmp/toppra.log test-reports
141
+ cp /tmp/toppra.log ~/repo/ test-reports/
142
142
143
143
- store_test_results :
144
144
path : test-reports
Original file line number Diff line number Diff line change 1
- FROM ubuntu:18.04
1
+ FROM ubuntu:xenial-20191108
2
2
MAINTAINER Hung Pham <
[email protected] >
3
3
4
4
ENV DEBIAN_FRONTEND=noninteractive
@@ -43,7 +43,9 @@ RUN cd /usr/src \
43
43
&& rm -rf /usr/src/openrave-${RAVE_COMMIT}/build
44
44
45
45
# Other deps
46
- RUN sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python-dev python3-dev python3-venv python-tk
46
+ RUN apt-get install -y --no-install-recommends python-dev python3-dev python3-venv python-tk && \
47
+ pip install virtualenv invoke
48
+
47
49
# RUN sudo apt-get install -y --no-install-recommends python-dev python3-dev python3-venv
48
50
49
51
# User
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
USER=hungpham2511
3
3
IMAGE=toppra-dep
4
- VERSION=0.0.2
4
+ VERSION=0.0.3
5
5
6
6
echo " Building docker image: $USER /$IMAGE :$VERSION "
7
7
docker build -t ${IMAGE} .
Original file line number Diff line number Diff line change 15
15
def rave_env ():
16
16
if IMPORT_OPENRAVE :
17
17
logger .warn ("Starting openrave" )
18
- orpy .RaveInitialize (load_all_plugins = False )
19
18
orpy .RaveInitialize (load_all_plugins = True )
20
19
logger .warn ("Starting a new environment" )
21
20
env = orpy .Environment ()
You can’t perform that action at this time.
0 commit comments