blob: 01ef05cb8844acfed8ac51be2e0b333c36a6025d [file] [log] [blame]
lowRISC Contributors802543a2019-08-31 12:12:56 +01001# Azure Pipelines CI build configuration
2# Documentation at https://aka.ms/yaml
3
4variables:
5 VERILATOR_VERSION: 4.010
6 VERILATOR_PATH: /opt/buildcache/verilator/$(VERILATOR_VERSION)
Miguel Osorio88179fc2019-09-19 23:37:48 -07007 TOOLCHAIN_PATH: /opt/buildcache/riscv
8 # Release tag from https://github.com/lowRISC/lowrisc-toolchains/releases
Philipp Wagner018e3a22019-10-10 15:55:56 +01009 TOOLCHAIN_VERSION: 20191010-1
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -060010 # This controls where builds happen, and gets picked up by build_consts.sh.
11 BUILD_ROOT: $(Build.ArtifactStagingDirectory)
lowRISC Contributors802543a2019-08-31 12:12:56 +010012
13trigger:
Philipp Wagnere98019a2019-10-30 17:08:00 +000014 tags:
15 include:
16 - '*'
lowRISC Contributors802543a2019-08-31 12:12:56 +010017 # Combine builds on master as long as another build is running
18 batch: true
19 branches:
20 include:
21 - master
22
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000023jobs:
24- job: "lint"
25 displayName: "Run code quality checks (lint)"
26 pool:
Philipp Wagner6511cb92019-11-04 15:00:07 +000027 vmImage: "ubuntu-16.04"
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000028 steps:
29 - bash: |
Garret Kellyf5608d02019-11-01 16:28:11 -040030 sudo apt-get remove -y clang-6.0 libclang-common-6.0-dev libclang1-6.0 libllvm6.0
Miguel Young de la Sota94383912019-12-05 14:34:04 -060031 displayName: 'Remove existing Clang installation'
32 - template: 'ci/install-package-dependencies.yml'
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000033 - bash: |
34 python3 --version
35 yapf --version
36 isort --version
37 clang-format -version
38 displayName: 'Display tool versions'
lowRISC Contributors802543a2019-08-31 12:12:56 +010039
Philipp Wagner2bb1c0e2019-10-30 11:51:46 +000040# XXX: Python lint checks are disabled until Issue #313 is resolved
lowRISC Contributors802543a2019-08-31 12:12:56 +010041# - bash: find ./util -iname '*.py' -print0 | xargs -0 -n1 $PWD/util/lintpy.py -f
42# displayName: 'Run Python lint'
43
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000044 - bash: |
45 make -C hw regs && git diff --exit-code
46 if [ $? != 0 ]; then
47 echo -n "##vso[task.logissue type=error]"
48 echo "Register headers not up-to-date. Regenerate them with 'make -C hw regs'."
49 exit 1
50 fi
51 condition: always()
52 displayName: 'Ensure all generated files are clean and up-to-date'
lowRISC Contributors802543a2019-08-31 12:12:56 +010053
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000054 - bash: |
Garret Kelly889bf6a2019-11-03 13:02:27 -050055 ./util/build_docs.py
56 condition: always()
57 displayName: 'Render documentation'
58
59 - bash: |
Garret Kelly8d7da7c2019-11-08 14:09:34 -050060 cd site/landing
61 ../../build/docs-hugo/hugo
62 condition: always()
63 displayName: 'Render landing site'
64
65 - bash: |
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000066 # XXX: As of today, task.logissue comments with 'sourcepath' set don't
67 # get reported to GitHub Checks annotations. Upstream bug report:
68 # https://developercommunity.visualstudio.com/content/problem/689794/pipelines-logging-command-logissue-does-not-report.html
69 #echo "##vso[task.issue type=error;sourcepath=/azure-pipelines.yml;linenumber=45;columnnumber=1;code=100;]Found something that could be a problem."
70 fork_origin=$(git merge-base --fork-point origin/master)
Alex Bradbury7337eb32019-11-08 07:58:16 +000071 changed_files=$(git diff --name-only $fork_origin | grep -v /vendor/ | grep -E '\.(cpp|cc|c|h)$')
Alex Bradbury43225aa2019-11-08 10:16:26 +000072 test -z "$changed_files" || git diff -U0 $fork_origin $changed_files | clang-format-diff -p1 | tee clang-format-output
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000073 if [ -s clang-format-output ]; then
74 echo -n "##vso[task.logissue type=error]"
Alex Bradburyf9611842019-11-08 08:06:24 +000075 echo "C/C++ lint failed. Use 'git clang-format' with appropriate options to reformat the changed code."
Philipp Wagnerbd9ae432019-11-01 14:33:30 +000076 exit 1
77 fi
78 # This check is not idempotent, but checks changes to a base branch.
79 # Run it only on pull requests.
80 condition: eq(variables['Build.Reason'], 'PullRequest')
81 displayName: 'Use clang-format to check C/C++ coding style'
82
83 - bash: |
84 commit_range=$(git merge-base --fork-point origin/master)..HEAD
85 # Notes:
86 # * Merge commits are not checked. We always use rebases instead of
87 # merges to keep a linear history, which makes merge commits disappear
88 # ultimately, making them only a CI artifact which should not be
89 # checked.
90 # * 'type=error' is used even for warnings. Only "errors" are shown in
91 # the GitHub checks API. However, warnings don't return a non-zero
92 # error code and don't fail the build step.
93 ./util/lint_commits.py \
94 --no-merges \
95 --error-msg-prefix='##vso[task.logissue type=error]' \
96 --warning-msg-prefix='##vso[task.logissue type=error]' \
97 $commit_range
98 # Only run on pull requests to check new commits only
99 condition: eq(variables['Build.Reason'], 'PullRequest')
100 displayName: "Check commit metadata"
101
102 - bash: |
103 only_doc_changes=0
104 if [ "$(Build.Reason)" = "PullRequest" ]; then
105 # Conservative way of checking for documentation-only changes.
106 # Only relevant for pipelines triggered from pull requests
107 echo "Checking for doc-only changes in this pull request"
Tobias Wölfele2a3fb72019-09-24 12:52:36 +0200108 fork_origin=$(git merge-base --fork-point origin/master)
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000109 only_doc_changes=$(git diff --name-only $fork_origin | grep -v '\.md$' -q; echo $?)
110 fi
111 echo "##vso[task.setvariable variable=onlyDocChanges;isOutput=true]${only_doc_changes}"
112 displayName: "Check if the commit only contains documentation changes"
113 name: DetermineBuildType
Philipp Wagner1e643552019-09-04 15:39:14 +0100114
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000115- job: "sw_build"
116 displayName: "Build Software"
117 dependsOn: lint
Philipp Wagner9d20ee62019-11-29 14:27:28 +0000118 condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0'))
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000119 pool:
120 vmImage: "ubuntu-16.04"
121 steps:
Miguel Young de la Sota94383912019-12-05 14:34:04 -0600122 - template: 'ci/install-package-dependencies.yml'
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000123 - bash: |
124 set -x
125 sudo util/get-toolchain.py \
126 --target-dir="${TOOLCHAIN_PATH}" \
127 --release-version="${TOOLCHAIN_VERSION}" \
128 --update \
129 --force
130 displayName: 'Install toolchain'
131 - bash: |
Miguel Young de la Sota63793572019-11-13 14:18:51 -0600132 . util/build_consts.sh
Miguel Young de la Sota4a4946d2019-11-21 10:44:18 -0600133 ./meson_init.sh -A
Miguel Young de la Sota63793572019-11-13 14:18:51 -0600134 ninja -C "$(sw_obj_dir sim-verilator)" all
135 ninja -C "$(sw_obj_dir fpga)" all
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000136 displayName: 'Build embedded targets'
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -0600137 - template: 'ci/upload-artifacts-template.yml'
138 parameters:
139 artifact: sw_build
lowRISC Contributors802543a2019-08-31 12:12:56 +0100140
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000141- job: "deprecated_make_build"
142 displayName: "Build Software with Make (deprecated)"
143 dependsOn: lint
Philipp Wagner9d20ee62019-11-29 14:27:28 +0000144 condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0'))
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000145 pool: Default
146 steps:
Miguel Young de la Sota94383912019-12-05 14:34:04 -0600147 - template: 'ci/install-package-dependencies.yml'
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000148 - bash: |
149 export TOOLCHAIN_PATH="${TOOLCHAIN_PATH}"
150 export TOOLCHAIN_VERSION="${TOOLCHAIN_VERSION}"
151 export DIST_DIR="$(Build.ArtifactStagingDirectory)/dist"
152 REQUEST_UPDATE=true ci/run_sw_make.sh
153 displayName: 'Build embedded targets'
154 - bash: |
155 make -C sw/host/spiflash clean all
156 # TODO: build system updates needed to copy build output to a dist
157 # staging directory.
Philipp Wagner1d0d9272019-11-01 15:18:54 +0000158 mkdir -p $(Build.ArtifactStagingDirectory)/dist/sw/host/spiflash
159 cp sw/host/spiflash/spiflash $(Build.ArtifactStagingDirectory)/dist/sw/host/spiflash
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000160 displayName: 'Build host targets'
Miguel Young de la Sotad258b332019-10-29 14:05:23 -0500161
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000162- job: "top_earlgrey_verilator"
163 displayName: "Build Verilator simulation of the Earl Grey toplevel design"
164 dependsOn: lint
Philipp Wagner9d20ee62019-11-29 14:27:28 +0000165 condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0'))
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000166 pool: Default
167 steps:
Miguel Young de la Sota94383912019-12-05 14:34:04 -0600168 - template: 'ci/install-package-dependencies.yml'
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000169 - bash: |
170 set -e
171 if [ ! -d $(VERILATOR_PATH) ]; then
172 echo "Building verilator (no cached build found)"
173 mkdir -p build/verilator
174 cd build/verilator
175 curl -Ls -o verilator.tgz https://www.veripool.org/ftp/verilator-$(VERILATOR_VERSION).tgz
176 tar -xf verilator.tgz
177 cd verilator-$(VERILATOR_VERSION)
178 ./configure --prefix=$(VERILATOR_PATH)
179 make -j$(nproc)
180 mkdir -p $VERILATOR_PATH
181 make install
182 else
183 echo "Re-using cached verilator build"
184 fi
185 displayName: 'Build and install Verilator'
186 - bash: |
187 export PATH=$VERILATOR_PATH/bin:$PATH
188 python3 --version
189 fusesoc --version
190 verilator --version
191 displayName: 'Display environment'
192 - bash: |
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600193 . util/build_consts.sh
194 mkdir -p "$OBJ_DIR/hw"
195 mkdir -p "$BIN_DIR/hw/top_earlgrey"
196
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000197 export PATH=$VERILATOR_PATH/bin:$PATH
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600198 fusesoc --cores-root=. \
199 run --target=sim --setup --build \
200 --build-root="$OBJ_DIR/hw" \
201 lowrisc:systems:top_earlgrey_verilator
202
203 cp "$OBJ_DIR/hw/sim-verilator/Vtop_earlgrey_verilator" \
204 "$BIN_DIR/hw/top_earlgrey"
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000205 displayName: 'Build simulation with Verilator'
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -0600206 - template: 'ci/upload-artifacts-template.yml'
207 parameters:
208 artifact: top_earlgrey_verilator
Philipp Wagnerf4655a12019-10-30 11:59:15 +0000209
Timothy Chen7d1436d2019-12-04 17:26:14 -0800210- job: "execute_verilated_tests"
211 displayName: "Execute tests on the Verilated system"
212 pool: "Default"
213 dependsOn:
214 - top_earlgrey_verilator
215 - sw_build
216 steps:
Miguel Young de la Sotae9dc2aa2019-12-05 17:17:32 -0600217 - template: 'ci/install-package-dependencies.yml'
Timothy Chen7d1436d2019-12-04 17:26:14 -0800218 - template: 'ci/download-artifacts-template.yml'
219 - bash: |
220 . util/build_consts.sh
221 export VERILATED_SYSTEM_PATH="$BIN_DIR/hw/top_earlgrey/Vtop_earlgrey_verilator"
Philipp Wagner57418e72019-12-02 21:25:27 +0000222 pytest --version
Timothy Chen7d1436d2019-12-04 17:26:14 -0800223 ci/run_verilator_pytest.sh
224 displayName: 'Execute tests'
225
226- job: "riscv_compliance_tests"
227 displayName: "Execute RISC-V compliance tests"
228 pool: "Default"
229 dependsOn:
230 - top_earlgrey_verilator
231 - execute_verilated_tests
232 steps:
Miguel Young de la Sotae9dc2aa2019-12-05 17:17:32 -0600233 - template: 'ci/install-package-dependencies.yml'
Timothy Chen7d1436d2019-12-04 17:26:14 -0800234 - template: 'ci/download-artifacts-template.yml'
235 - bash: |
236 . util/build_consts.sh
237 export TARGET_SIM="$BIN_DIR/hw/top_earlgrey/Vtop_earlgrey_verilator"
238 export RISCV_DEVICE=rv32imc
239 export RISCV_TARGET=opentitan
240 export OT_TARGET=verilator
241 export OT_TOOLS="$TOOLCHAIN_PATH/bin"
242 cd sw/vendor/riscv_compliance
243 # Only running base interger variant for now, others will be added later.
244 make RISCV_ISA=rv32i
245 displayName: 'Execute tests'
246
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000247- job: "top_earlgrey_nexysvideo"
248 displayName: "Build NexysVideo variant of the Earl Grey toplevel design using Vivado"
249 dependsOn:
250 - lint
251 # The bootrom is built into the FPGA image at synthesis time.
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600252 - sw_build
Philipp Wagner9d20ee62019-11-29 14:27:28 +0000253 condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0'))
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000254 pool: Default
255 timeoutInMinutes: 120 # 2 hours
256 steps:
Miguel Young de la Sota94383912019-12-05 14:34:04 -0600257 - template: 'ci/install-package-dependencies.yml'
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -0600258 - template: 'ci/download-artifacts-template.yml'
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000259 - bash: |
260 set -e
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600261 . util/build_consts.sh
262 mkdir -p "$OBJ_DIR/hw"
263 mkdir -p "$BIN_DIR/hw/top_earlgrey"
264
265 BOOTROM_VMEM="$BIN_DIR/sw/device/fpga/boot_rom/boot_rom.vmem"
266 test -f "$BOOTROM_VMEM"
267
268 . /opt/xilinx/Vivado/2018.3/settings64.sh
269 fusesoc --cores-root=. \
270 run --target=synth --setup --build \
271 --build-root="$OBJ_DIR/hw" \
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000272 lowrisc:systems:top_earlgrey_nexysvideo \
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600273 --ROM_INIT_FILE="$BOOTROM_VMEM"
274
275 cp "$OBJ_DIR/hw/synth-vivado/lowrisc_systems_top_earlgrey_nexysvideo_0.1.bit" \
276 "$BIN_DIR/hw/top_earlgrey"
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000277 displayName: 'Build bitstream with Vivado'
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -0600278 - template: 'ci/upload-artifacts-template.yml'
279 parameters:
280 artifact: top_earlgrey_nexysvideo
lowRISC Contributors802543a2019-08-31 12:12:56 +0100281
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000282- job: "deploy_releaseartifacts"
283 displayName: "Package and deploy release distribution"
284 pool:
285 vmImage: "ubuntu-latest"
286 dependsOn:
287 - lint
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600288 - sw_build
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000289 - top_earlgrey_verilator
290 - top_earlgrey_nexysvideo
291 condition: eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0')
292 steps:
Miguel Young de la Sota94383912019-12-05 14:34:04 -0600293 - template: 'ci/install-package-dependencies.yml'
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -0600294 - template: 'ci/download-artifacts-template.yml'
Miguel Young de la Sotad42948c2019-11-18 13:56:55 -0600295 - bash: |
Miguel Young de la Sotad42948c2019-11-18 13:56:55 -0600296 . util/build_consts.sh
Miguel Young de la Sotab5be8c62019-11-20 10:01:09 -0600297
Miguel Young de la Sotad42948c2019-11-18 13:56:55 -0600298 util/make_distribution.sh
Philipp Wagner542e2202019-10-30 13:10:16 +0000299
Miguel Young de la Sotad42948c2019-11-18 13:56:55 -0600300 tar --list -f $BIN_DIR/opentitan-*.tar.xz
301 # Put the resulting tar file into a directory the |publish| step below can reference.
302 mkdir "$BUILD_ROOT/dist-final"
303 mv $BIN_DIR/opentitan-*.tar.xz "$BUILD_ROOT/dist-final"
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000304 displayName: 'Create final dist directory out of partial ones'
305 - publish: $(Build.ArtifactStagingDirectory)/dist-final
306 artifact: opentitan-dist
307 displayName: "Upload release artifacts as Azure artifact"
308 - task: GithubRelease@0
309 displayName: 'Upload to GitHub releases (only tags)'
Philipp Wagner0b20f5d2019-11-01 16:24:52 +0000310 condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))
Philipp Wagnerbd9ae432019-11-01 14:33:30 +0000311 inputs:
312 gitHubConnection: opentitan-release-upload
313 repositoryName: lowrisc/opentitan
314 addChangeLog: false
315 assets: |
316 $(Build.ArtifactStagingDirectory)/dist-final/*