ci(docker): fix arch linux cache issue (#1570)
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user