aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/install_samplevnf/tasks/main.yml
blob: b5d33f668b3d19fdadd8ca1aaed0410f0c1f71ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Copyright (c) 2017 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
- set_fact:
    vnf_build_dir: "{{ samplevnf_path }}/VNFs/{{ vnf_build_dirs[vnf_name] }}"

- set_fact:
    vnf_app_name: "{{ vnf_app_names[vnf_name] }}"

- name: Install extra build dependencies
  action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  with_items: "{{ vnf_build_dependencies.get(vnf_name, {}).get(ansible_os_family, []) }}"

- name: set build env vars
  set_fact:
      build_env_vars:
        RTE_SDK: "{{ RTE_SDK }}"
        RTE_TARGET: "{{ RTE_TARGET }}"
        VNF_CORE: "{{ samplevnf_path }}"

- name: set soft CRC and GEN_DECAP_IPV6_TO_IPV4_CKSUM for PROX when building in VM
  set_fact:
      build_env_vars: "{{ build_env_vars|combine({'crc': 'soft'})|combine({'GEN_DECAP_IPV6_TO_IPV4_CKSUM':'y'}) }}"
  when: vnf_name == "PROX" and image_type is defined and image_type == "vm"

- name: "make {{ vnf_name }} clean"
  command: make -j {{ ansible_processor_vcpus }} clean
  args:
    chdir: "{{ vnf_build_dir }}"
  environment: "{{ build_env_vars }}"

- name: "make {{ vnf_name }}"
  command: make -j {{ ansible_processor_vcpus }}
  args:
    chdir: "{{ vnf_build_dir }}"
  environment: "{{ build_env_vars }}"

#- command: cp "{{ vnf_build_dir }}/{{ vnf_name }}/build/ip_pipeline" "{{ INSTALL_BIN_PATH }}/vACL_vnf"

- name: "Install {{ vnf_name }} VNF"
  copy:
    src: "{{ vnf_build_dir }}/build/{{ vnf_app_name }}"
    dest: "{{ INSTALL_BIN_PATH }}/{{ vnf_app_name }}"
    remote_src: True
    # make executable
    mode: 0755