Browse Source

update ci to load v_tools

SBird1337 6 years ago
parent
commit
70c82c0eb7
2 changed files with 4 additions and 9 deletions
  1. 4
    0
      .gitlab-ci.yml
  2. 0
    9
      Dockerfile

+ 4
- 0
.gitlab-ci.yml View File

29
   - git submodule sync --recursive
29
   - git submodule sync --recursive
30
   - git submodule update --init
30
   - git submodule update --init
31
 
31
 
32
+
33
+  ## Move pymap from the docker image to the tools folder
34
+  - mkdir -p ../tools
35
+  - mv /sots-tools/v_tools ../tools
32
 stages:
36
 stages:
33
   - build
37
   - build
34
 
38
 

+ 0
- 9
Dockerfile View File

1
-FROM debian:stretch
2
-
3
-RUN apt-get update \
4
-    && DEBIAN_FRONTEND=noninteractive apt-get -y install apt-transport-https dirmngr build-essential git binutils-arm-none-eabi \
5
-    && apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
6
-    && echo "deb https://download.mono-project.com/repo/debian stable-stretch main" > /etc/apt/sources.list.d/mono-official-stable.list \
7
-    && apt-get update \
8
-    && apt-get install -y mono-devel \
9
-    && rm -rf /var/lib/apt/lists/* \