ソースを参照

update ci to load v_tools

SBird1337 6 年 前
コミット
70c82c0eb7
共有2 個のファイルを変更した4 個の追加9 個の削除を含む
  1. 4
    0
      .gitlab-ci.yml
  2. 0
    9
      Dockerfile

+ 4
- 0
.gitlab-ci.yml ファイルの表示

@@ -29,6 +29,10 @@ before_script:
29 29
   - git submodule sync --recursive
30 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 36
 stages:
33 37
   - build
34 38
 

+ 0
- 9
Dockerfile ファイルの表示

@@ -1,9 +0,0 @@
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/* \