.gitlab-ci.yml 1.4 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7
before_script:
  - env

image: $SERVER_LITE_DOCKER_IMAGE

stages:
  - ci
S
up  
superjomn 已提交
8 9
  - build_server
  - build_mobile
S
superjomn 已提交
10 11

check:prebuilt:
S
up  
superjomn 已提交
12 13 14 15 16
    stage: ci
    script:
        - ls
        #- ./paddle/fluid/lite/tools/build.sh check_need_ci
        #- ./paddle/fluid/lite/tools/build.sh check_style
S
superjomn 已提交
17 18

build:server:
S
up  
superjomn 已提交
19
    image: $SERVER_LITE_DOCKER_IMAGE
S
up  
superjomn 已提交
20
    stage: build_server
S
up  
superjomn 已提交
21 22 23 24 25 26 27 28 29 30 31 32
    cache:
        key: server_thirdparty
        paths:
            - build/third_party
    script:
        - export http_proxy=http://172.19.57.45:3128
        - export https_proxy=http://172.19.57.45:3128
        - mkdir -p build
        - cd build
        - ../paddle/fluid/lite/tools/build.sh cmake_x86
        - make extern_eigen3
        - make extern_boost
S
up  
superjomn 已提交
33 34
        - make framework_proto
        - make extern_warpctc
S
up  
superjomn 已提交
35 36 37
        - cd ..
        - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/build/third_party/install/mklml/lib
        - ./paddle/fluid/lite/tools/build.sh build_test_server
S
up  
superjomn 已提交
38 39 40
    dependencies:
        - check:prebuilt

S
superjomn 已提交
41
build:mobile:
S
up  
superjomn 已提交
42
    stage: build_mobile
S
superjomn 已提交
43
    image: $MOBILE_LITE_DOCKER_IMAGE
S
up  
superjomn 已提交
44 45 46 47 48
    cache:
        key: mobile_thirdparty
        paths:
            - $MOBILE_LITE_CACHE0
            - $MOBILE_LITE_CACHE1
S
superjomn 已提交
49
    script:
S
up  
superjomn 已提交
50 51
        - export http_proxy=http://172.19.57.45:3128
        - export https_proxy=http://172.19.57.45:3128
S
superjomn 已提交
52
        - ./paddle/fluid/lite/tools/build.sh build_test_arm
S
up  
superjomn 已提交
53 54
    dependencies:
        - build:server