blob: b9582c8b029375bc94cba4771d2b84856664ed23 [file] [log] [blame]
Miles Dai6d96cdf2022-03-09 18:45:49 -05001# 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 uploading artifacts to a Google Cloud Platform (GCP)
6# bucket.
7#
8# This template first installs gsutil to interact with GCP resources. Then,
9# files located under parentDir and at paths specified by includeFiles will be
10# packed into archiveName (a tar.gz file) and uploaded to a GCP bucket located
11# at bucketURI using gsutil.
12#
13# Writing to a GCP bucket requires a GCP service account key with sufficient
14# permisions. This key must be uploaded to Azure as a Secure File. The name of
15# the key file should be provided as gcpKeyFile.
16#
17
18parameters:
19 - name: parentDir
20 type: string
21 default: ""
22 - name: includeFiles
23 type: object
24 default: []
25 - name: archiveName
26 type: string
27 default: ""
28 - name: gcpKeyFile
29 type: string
30 default: ""
31 - name: bucketURI
32 type: string
33 default: ""
34
35steps:
36 - task: DownloadSecureFile@1
37 name: gcpkey
38 inputs:
39 secureFile: ${{ parameters.gcpKeyFile }}
40 - bash: |
41 echo "Installing gsutil"
42 sudo apt-get install -y apt-transport-https ca-certificates gnupg
43 echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | \
44 sudo tee /etc/apt/sources.list.d/google-cloud-sdk.list
45 echo "vvvvvvvvv cat /etc/apt/sources.list.d/google-cloud-sdk.list"
46 cat /etc/apt/sources.list.d/google-cloud-sdk.list
47 echo "^^^^^^^^"
48 curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo tee /usr/share/keyrings/cloud.google.gpg
49 sudo apt-get update || {
50 error "Failed to run apt-get update"
51 }
52 sudo apt-get install -y google-cloud-cli
53
54 . util/build_consts.sh
55 printf "$(date -u +%Y-%m-%dT%H:%M:%S)\n$(Build.SourceVersion)" > latest.txt
56 printf "${{ join('\n', parameters.includeFiles) }}" > include_files.txt
57 tar -C ${{ parameters.parentDir }} -zcvf ${{ parameters.archiveName }} -T include_files.txt
58
59 gsutil -o Credentials:gs_service_key_file=$(gcpkey.secureFilePath) \
60 cp latest.txt ${{ parameters.bucketURI }}/latest.txt
61 gsutil -o Credentials:gs_service_key_file=$(gcpkey.secureFilePath) \
62 cp -r ${{ parameters.archiveName }} ${{ parameters.bucketURI }}/${{ parameters.archiveName }}
63 condition: succeeded()
64 displayName: Upload artifacts to GCP bucket
65