ci(docker): fix arch linux cache issue (#1570)
This commit is contained in:
parent
f9a00f3ed4
commit
e9f4409853
1 changed files with 4 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ FROM ${BASE}:${TAG} AS sunshine-base
|
||||||
RUN <<_DEPS
|
RUN <<_DEPS
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
pacman -Syu --disable-download-timeout --needed --noconfirm \
|
pacman -Syu --disable-download-timeout --needed --noconfirm \
|
||||||
archlinux-keyring
|
archlinux-keyring
|
||||||
_DEPS
|
_DEPS
|
||||||
|
|
||||||
|
|
@ -102,6 +102,9 @@ COPY --link --from=artifacts /sunshine.pkg.tar.zst /
|
||||||
RUN <<_INSTALL_SUNSHINE
|
RUN <<_INSTALL_SUNSHINE
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e
|
set -e
|
||||||
|
# update keyring to prevent cached keyring errors
|
||||||
|
pacman -Syu --disable-download-timeout --needed --noconfirm \
|
||||||
|
archlinux-keyring
|
||||||
pacman -U --disable-download-timeout --needed --noconfirm \
|
pacman -U --disable-download-timeout --needed --noconfirm \
|
||||||
/sunshine.pkg.tar.zst
|
/sunshine.pkg.tar.zst
|
||||||
_INSTALL_SUNSHINE
|
_INSTALL_SUNSHINE
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue