Skip to content

Commit 0db85cf

Browse files
committed
Fix temp uasge
1 parent bbf2fa4 commit 0db85cf

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

.github/workflows/debos.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,23 @@ jobs:
7575
// write files under temp dir
7676
const fs = require('fs');
7777
const path = require('path');
78-
fs.writeFileSync(path.join(temp, 'linux_deb_links.zip'),
78+
fs.writeFileSync('linux_deb_links.zip',
7979
Buffer.from(linux_deb_url));
80-
fs.writeFileSync(path.join(temp, 'u_boot_rb1_links.zip'),
80+
fs.writeFileSync('u_boot_rb1_links.zip',
8181
Buffer.from(u_boot_rb1_url));
8282
83+
- name: Download Linux deb and U-Boot for RB1 from fileserver
84+
run: |
85+
apt -y install unzip
86+
unzip -l linux_deb_links.zip
87+
unzip -l u_boot_rb1_links.zip
88+
mkdir linux_deb_links
89+
mkdir u_boot_rb1_links
90+
unzip linux_deb_links.zip -d linux_deb_links
91+
unzip u_boot_rb1_links.zip -d u_boot_rb1_links
92+
head u_boot_rb1_links/*
93+
ls `cat u_boot_rb1_links/*.dir`
94+
8395
# make sure we have latest packages first, to get latest fixes and to
8496
# avoid an automated update while we're building
8597
- name: Update OS packages

0 commit comments

Comments
 (0)