debug
This commit is contained in:
parent
348d670028
commit
33b2d50519
|
@ -29,7 +29,7 @@ runs:
|
|||
uses: actions/cache@v4
|
||||
with:
|
||||
path: buildroot
|
||||
key: ${{env.TOOLCHAIN_URL}}
|
||||
key: ${{env.TOOLCHAIN_SHA}}
|
||||
|
||||
- name: Set up buildroot
|
||||
if: steps.cache-buildroot.outputs.cache-hit != 'true'
|
||||
|
@ -38,10 +38,10 @@ runs:
|
|||
mkdir buildroot
|
||||
wget ${TOOLCHAIN_URL} -O buildroot/buildroot.tar.bz2
|
||||
cd buildroot
|
||||
echo "${TOOLCHAIN_SHA} buildroot.tar.bz2"
|
||||
echo "${TOOLCHAIN_SHA} buildroot.tar.bz2" | shasum --check
|
||||
tar -xjf buildroot.tar.bz2
|
||||
tar -xjf buildroot.tar.bz2 --strip-components=1
|
||||
ls -l
|
||||
rm buildroot.tar.bz2
|
||||
cd buildroot
|
||||
./relocate-sdk.sh
|
||||
cd ..
|
||||
|
|
Loading…
Reference in New Issue