lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 1 | # Azure Pipelines CI build configuration |
| 2 | # Documentation at https://aka.ms/yaml |
| 3 | |
| 4 | variables: |
| 5 | VERILATOR_VERSION: 4.010 |
| 6 | VERILATOR_PATH: /opt/buildcache/verilator/$(VERILATOR_VERSION) |
Miguel Osorio | 88179fc | 2019-09-19 23:37:48 -0700 | [diff] [blame] | 7 | TOOLCHAIN_PATH: /opt/buildcache/riscv |
| 8 | # Release tag from https://github.com/lowRISC/lowrisc-toolchains/releases |
Philipp Wagner | 018e3a2 | 2019-10-10 15:55:56 +0100 | [diff] [blame] | 9 | TOOLCHAIN_VERSION: 20191010-1 |
Miguel Young de la Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 10 | # This controls where builds happen, and gets picked up by build_consts.sh. |
| 11 | BUILD_ROOT: $(Build.ArtifactStagingDirectory) |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 12 | |
| 13 | trigger: |
Philipp Wagner | e98019a | 2019-10-30 17:08:00 +0000 | [diff] [blame] | 14 | tags: |
| 15 | include: |
| 16 | - '*' |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 17 | # Combine builds on master as long as another build is running |
| 18 | batch: true |
| 19 | branches: |
| 20 | include: |
| 21 | - master |
| 22 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 23 | jobs: |
| 24 | - job: "lint" |
| 25 | displayName: "Run code quality checks (lint)" |
| 26 | pool: |
Philipp Wagner | 6511cb9 | 2019-11-04 15:00:07 +0000 | [diff] [blame] | 27 | vmImage: "ubuntu-16.04" |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 28 | steps: |
| 29 | - bash: | |
Garret Kelly | f5608d0 | 2019-11-01 16:28:11 -0400 | [diff] [blame] | 30 | sudo apt-get remove -y clang-6.0 libclang-common-6.0-dev libclang1-6.0 libllvm6.0 |
Miguel Young de la Sota | 9438391 | 2019-12-05 14:34:04 -0600 | [diff] [blame] | 31 | displayName: 'Remove existing Clang installation' |
| 32 | - template: 'ci/install-package-dependencies.yml' |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 33 | - bash: | |
| 34 | python3 --version |
| 35 | yapf --version |
| 36 | isort --version |
| 37 | clang-format -version |
| 38 | displayName: 'Display tool versions' |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 39 | |
Philipp Wagner | 2bb1c0e | 2019-10-30 11:51:46 +0000 | [diff] [blame] | 40 | # XXX: Python lint checks are disabled until Issue #313 is resolved |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 41 | # - bash: find ./util -iname '*.py' -print0 | xargs -0 -n1 $PWD/util/lintpy.py -f |
| 42 | # displayName: 'Run Python lint' |
| 43 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 44 | - 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 Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 53 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 54 | - bash: | |
Garret Kelly | 889bf6a | 2019-11-03 13:02:27 -0500 | [diff] [blame] | 55 | ./util/build_docs.py |
| 56 | condition: always() |
| 57 | displayName: 'Render documentation' |
| 58 | |
| 59 | - bash: | |
Garret Kelly | 8d7da7c | 2019-11-08 14:09:34 -0500 | [diff] [blame] | 60 | cd site/landing |
| 61 | ../../build/docs-hugo/hugo |
| 62 | condition: always() |
| 63 | displayName: 'Render landing site' |
| 64 | |
| 65 | - bash: | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 66 | # 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 Bradbury | 7337eb3 | 2019-11-08 07:58:16 +0000 | [diff] [blame] | 71 | changed_files=$(git diff --name-only $fork_origin | grep -v /vendor/ | grep -E '\.(cpp|cc|c|h)$') |
Alex Bradbury | 43225aa | 2019-11-08 10:16:26 +0000 | [diff] [blame] | 72 | test -z "$changed_files" || git diff -U0 $fork_origin $changed_files | clang-format-diff -p1 | tee clang-format-output |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 73 | if [ -s clang-format-output ]; then |
| 74 | echo -n "##vso[task.logissue type=error]" |
Alex Bradbury | f961184 | 2019-11-08 08:06:24 +0000 | [diff] [blame] | 75 | echo "C/C++ lint failed. Use 'git clang-format' with appropriate options to reformat the changed code." |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 76 | 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ölfel | e2a3fb7 | 2019-09-24 12:52:36 +0200 | [diff] [blame] | 108 | fork_origin=$(git merge-base --fork-point origin/master) |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 109 | 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 Wagner | 1e64355 | 2019-09-04 15:39:14 +0100 | [diff] [blame] | 114 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 115 | - job: "sw_build" |
| 116 | displayName: "Build Software" |
| 117 | dependsOn: lint |
Philipp Wagner | 9d20ee6 | 2019-11-29 14:27:28 +0000 | [diff] [blame] | 118 | condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0')) |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 119 | pool: |
| 120 | vmImage: "ubuntu-16.04" |
| 121 | steps: |
Miguel Young de la Sota | 9438391 | 2019-12-05 14:34:04 -0600 | [diff] [blame] | 122 | - template: 'ci/install-package-dependencies.yml' |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 123 | - 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 Sota | 6379357 | 2019-11-13 14:18:51 -0600 | [diff] [blame] | 132 | . util/build_consts.sh |
Miguel Young de la Sota | 4a4946d | 2019-11-21 10:44:18 -0600 | [diff] [blame] | 133 | ./meson_init.sh -A |
Miguel Young de la Sota | 6379357 | 2019-11-13 14:18:51 -0600 | [diff] [blame] | 134 | ninja -C "$(sw_obj_dir sim-verilator)" all |
| 135 | ninja -C "$(sw_obj_dir fpga)" all |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 136 | displayName: 'Build embedded targets' |
Miguel Young de la Sota | b4df860 | 2019-11-21 12:44:11 -0600 | [diff] [blame] | 137 | - template: 'ci/upload-artifacts-template.yml' |
| 138 | parameters: |
| 139 | artifact: sw_build |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 140 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 141 | - job: "deprecated_make_build" |
| 142 | displayName: "Build Software with Make (deprecated)" |
| 143 | dependsOn: lint |
Philipp Wagner | 9d20ee6 | 2019-11-29 14:27:28 +0000 | [diff] [blame] | 144 | condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0')) |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 145 | pool: Default |
| 146 | steps: |
Miguel Young de la Sota | 9438391 | 2019-12-05 14:34:04 -0600 | [diff] [blame] | 147 | - template: 'ci/install-package-dependencies.yml' |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 148 | - 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 Wagner | 1d0d927 | 2019-11-01 15:18:54 +0000 | [diff] [blame] | 158 | mkdir -p $(Build.ArtifactStagingDirectory)/dist/sw/host/spiflash |
| 159 | cp sw/host/spiflash/spiflash $(Build.ArtifactStagingDirectory)/dist/sw/host/spiflash |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 160 | displayName: 'Build host targets' |
Miguel Young de la Sota | d258b33 | 2019-10-29 14:05:23 -0500 | [diff] [blame] | 161 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 162 | - job: "top_earlgrey_verilator" |
| 163 | displayName: "Build Verilator simulation of the Earl Grey toplevel design" |
| 164 | dependsOn: lint |
Philipp Wagner | 9d20ee6 | 2019-11-29 14:27:28 +0000 | [diff] [blame] | 165 | condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0')) |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 166 | pool: Default |
| 167 | steps: |
Miguel Young de la Sota | 9438391 | 2019-12-05 14:34:04 -0600 | [diff] [blame] | 168 | - template: 'ci/install-package-dependencies.yml' |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 169 | - 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 Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 193 | . util/build_consts.sh |
| 194 | mkdir -p "$OBJ_DIR/hw" |
| 195 | mkdir -p "$BIN_DIR/hw/top_earlgrey" |
| 196 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 197 | export PATH=$VERILATOR_PATH/bin:$PATH |
Miguel Young de la Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 198 | 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 Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 205 | displayName: 'Build simulation with Verilator' |
Miguel Young de la Sota | b4df860 | 2019-11-21 12:44:11 -0600 | [diff] [blame] | 206 | - template: 'ci/upload-artifacts-template.yml' |
| 207 | parameters: |
| 208 | artifact: top_earlgrey_verilator |
Philipp Wagner | f4655a1 | 2019-10-30 11:59:15 +0000 | [diff] [blame] | 209 | |
Timothy Chen | 7d1436d | 2019-12-04 17:26:14 -0800 | [diff] [blame] | 210 | - 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 Sota | e9dc2aa | 2019-12-05 17:17:32 -0600 | [diff] [blame] | 217 | - template: 'ci/install-package-dependencies.yml' |
Timothy Chen | 7d1436d | 2019-12-04 17:26:14 -0800 | [diff] [blame] | 218 | - 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 Wagner | 57418e7 | 2019-12-02 21:25:27 +0000 | [diff] [blame] | 222 | pytest --version |
Timothy Chen | 7d1436d | 2019-12-04 17:26:14 -0800 | [diff] [blame] | 223 | 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 Sota | e9dc2aa | 2019-12-05 17:17:32 -0600 | [diff] [blame] | 233 | - template: 'ci/install-package-dependencies.yml' |
Timothy Chen | 7d1436d | 2019-12-04 17:26:14 -0800 | [diff] [blame] | 234 | - 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 Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 247 | - 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 Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 252 | - sw_build |
Philipp Wagner | 9d20ee6 | 2019-11-29 14:27:28 +0000 | [diff] [blame] | 253 | condition: and(succeeded(), eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0')) |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 254 | pool: Default |
| 255 | timeoutInMinutes: 120 # 2 hours |
| 256 | steps: |
Miguel Young de la Sota | 9438391 | 2019-12-05 14:34:04 -0600 | [diff] [blame] | 257 | - template: 'ci/install-package-dependencies.yml' |
Miguel Young de la Sota | b4df860 | 2019-11-21 12:44:11 -0600 | [diff] [blame] | 258 | - template: 'ci/download-artifacts-template.yml' |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 259 | - bash: | |
| 260 | set -e |
Miguel Young de la Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 261 | . 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 Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 272 | lowrisc:systems:top_earlgrey_nexysvideo \ |
Miguel Young de la Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 273 | --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 Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 277 | displayName: 'Build bitstream with Vivado' |
Miguel Young de la Sota | b4df860 | 2019-11-21 12:44:11 -0600 | [diff] [blame] | 278 | - template: 'ci/upload-artifacts-template.yml' |
| 279 | parameters: |
| 280 | artifact: top_earlgrey_nexysvideo |
lowRISC Contributors | 802543a | 2019-08-31 12:12:56 +0100 | [diff] [blame] | 281 | |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 282 | - job: "deploy_releaseartifacts" |
| 283 | displayName: "Package and deploy release distribution" |
| 284 | pool: |
| 285 | vmImage: "ubuntu-latest" |
| 286 | dependsOn: |
| 287 | - lint |
Miguel Young de la Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 288 | - sw_build |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 289 | - top_earlgrey_verilator |
| 290 | - top_earlgrey_nexysvideo |
| 291 | condition: eq(dependencies.lint.outputs['DetermineBuildType.onlyDocChanges'], '0') |
| 292 | steps: |
Miguel Young de la Sota | 9438391 | 2019-12-05 14:34:04 -0600 | [diff] [blame] | 293 | - template: 'ci/install-package-dependencies.yml' |
Miguel Young de la Sota | b4df860 | 2019-11-21 12:44:11 -0600 | [diff] [blame] | 294 | - template: 'ci/download-artifacts-template.yml' |
Miguel Young de la Sota | d42948c | 2019-11-18 13:56:55 -0600 | [diff] [blame] | 295 | - bash: | |
Miguel Young de la Sota | d42948c | 2019-11-18 13:56:55 -0600 | [diff] [blame] | 296 | . util/build_consts.sh |
Miguel Young de la Sota | b5be8c6 | 2019-11-20 10:01:09 -0600 | [diff] [blame] | 297 | |
Miguel Young de la Sota | d42948c | 2019-11-18 13:56:55 -0600 | [diff] [blame] | 298 | util/make_distribution.sh |
Philipp Wagner | 542e220 | 2019-10-30 13:10:16 +0000 | [diff] [blame] | 299 | |
Miguel Young de la Sota | d42948c | 2019-11-18 13:56:55 -0600 | [diff] [blame] | 300 | 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 Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 304 | 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 Wagner | 0b20f5d | 2019-11-01 16:24:52 +0000 | [diff] [blame] | 310 | condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/')) |
Philipp Wagner | bd9ae43 | 2019-11-01 14:33:30 +0000 | [diff] [blame] | 311 | inputs: |
| 312 | gitHubConnection: opentitan-release-upload |
| 313 | repositoryName: lowrisc/opentitan |
| 314 | addChangeLog: false |
| 315 | assets: | |
| 316 | $(Build.ArtifactStagingDirectory)/dist-final/* |