blob: 0b1ed7039fb5a7703b87c244a9869a6d360a0ad6 (
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
59
|
#
# Copyright 2022 Ettus Research, a National Instruments Brand
#
# SPDX-License-Identifier: LGPL-3.0-or-later
#
# Description:
#
# This pipeline is used to build FPGAs and run testbenches as CI
# from commits in master.
#
# See https://aka.ms/yaml for pipeline YAML documentation.
#
parameters:
- name: run_testbenches
type: boolean
displayName: Run Testbenches
default: false
- name: clean_ip_build
type: boolean
displayName: Clean IP Build
default: true
- name: package_images
type: boolean
displayName: Package Images
default: true
- name: build_x410
type: boolean
displayName: Build X410
default: true
trigger:
batch: true
branches:
include:
- master
paths:
include:
- fpga/usrp3/lib
- fpga/usrp3/top/x400
- fpga/.ci
pr: none
schedules:
- cron: "0 18 * * Sun"
displayName: Weekly FPGA CI Build master branch
branches:
include:
- master
always: true
extends:
template: templates/stages-fpga-pipeline.yml
parameters:
run_testbenches: ${{ parameters.run_testbenches }}
clean_ip_build: ${{ parameters.clean_ip_build }}
package_images: ${{ parameters.package_images }}
build_x410: ${{ parameters.build_x410 }}
|