blob: d5b9e7467ef81a94416338fe1ad7611e7940f273 [file] [log] [blame]
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -06001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
5# Azure template for downloading pipeline step outputs and unpacking them.
6#
Philipp Wagnerbdfb9332021-02-02 18:10:06 +00007# This template will download all artifacts from the upstream jobs listed in
8# `downloadPartialBuildBinFrom` (which are expected to use
9# upload-artifacts-template.yml) and unpack them.
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -060010#
11# This template expects that a variable $BUILD_ROOT is set to a writeable
12# directory; the results will be available in $BIN_DIR. See
13# util/build_consts.sh for more information.
14
Philipp Wagnerbdfb9332021-02-02 18:10:06 +000015parameters:
16 # Names of jobs to download a partial $BIN_DIR from.
17 # List all "upstream" jobs here which produce files in $BIN_DIR which are
18 # needed in the current job. In other words, list all jobs which need to be
19 # executed and produce some build outputs before this job can start. The
20 # current job will find all outputs from those upstream jobs in $BIN_DIR and
21 # can use them.
22 - name: downloadPartialBuildBinFrom
23 type: object
24 default: []
25
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -060026steps:
Philipp Wagnerbdfb9332021-02-02 18:10:06 +000027 - ${{ each job in parameters.downloadPartialBuildBinFrom }}:
28 - task: DownloadPipelineArtifact@2
29 inputs:
30 buildType: current
31 path: '$(BUILD_ROOT)/downloads/${{ job }}'
32 artifact: "partial-build-bin-${{ job }}"
33 displayName: Downloading partial build-bin directory from job ${{ job }}
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -060034 - bash: |
35 set -e
36 test -n "$BUILD_ROOT"
37 . util/build_consts.sh
38 mkdir -p "$BIN_DIR"
39
Philipp Wagnerbdfb9332021-02-02 18:10:06 +000040 echo 'Extracting partial BIN_DIRs:'
Miguel Young de la Sotab4df8602019-11-21 12:44:11 -060041 find "$BUILD_ROOT/downloads" \
42 -name 'build-bin.tar' \
43 -exec \
44 tar -C "$BIN_DIR" \
45 --strip-components=1 \
46 --overwrite \
47 -xvf {} \;
Philipp Wagnerbdfb9332021-02-02 18:10:06 +000048 displayName: Unpack upstream outputs