Skip to content

Commit 7231a81

Browse files
committed
tmp
1 parent 5e2d8da commit 7231a81

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/debos.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ jobs:
101101
- name: Upload artifacts to fileserver space for builds
102102
run: |
103103
set -ux
104+
# python3-requests is used by publish_aritfacts.py
105+
apt -y install python3-requests
104106
# create a directory for the current run
105107
export BUILD_DIR="/tmp/${BUILD_ID}"
106108
mkdir -vp "${BUILD_DIR}"

.github/workflows/linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ jobs:
7171
set -ux
7272
# dcmd from devscripts will be used to parse .changes file
7373
apt -y install --no-install-recommends devscripts
74+
# python3-requests is used by publish_aritfacts.py
75+
apt -y install python3-requests
7476
# copy to fileserver builds and downloads directories
7577
export BUILD_DIR="/fileserver-downloads/${BUILD_ID}"
7678
mkdir -vp "${BUILD_DIR}"

.github/workflows/u-boot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6363
run: |
6464
set -ux
65+
# python3-requests is used by publish_aritfacts.py
66+
apt -y install python3-requests
6567
6668
export BUILD_DIR="/fileserver-downloads/qcom-deb-images/u-boot-rb1-latest"
6769
mkdir -vp ${BUILD_DIR}

0 commit comments

Comments
 (0)