mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-16 03:31:39 +00:00
scripts: don't refresh the pacman repository on Arch (#12194)
Fixes #12186 Signed-off-by: Chris Palmer <cpalmer@tailscale.com> Co-authored-by: Chris Palmer <cpalmer@tailscale.com>
This commit is contained in:
parent
732af2f6e0
commit
59936e6d4a
5
.github/workflows/installer.yml
vendored
5
.github/workflows/installer.yml
vendored
@ -67,6 +67,11 @@ jobs:
|
|||||||
image: ${{ matrix.image }}
|
image: ${{ matrix.image }}
|
||||||
options: --user root
|
options: --user root
|
||||||
steps:
|
steps:
|
||||||
|
- name: install dependencies (pacman)
|
||||||
|
# Refresh the package databases to ensure that the tailscale package is
|
||||||
|
# defined.
|
||||||
|
run: pacman -Sy
|
||||||
|
if: contains(matrix.image, 'archlinux')
|
||||||
- name: install dependencies (yum)
|
- name: install dependencies (yum)
|
||||||
# tar and gzip are needed by the actions/checkout below.
|
# tar and gzip are needed by the actions/checkout below.
|
||||||
run: yum install -y --allowerasing tar gzip ${{ matrix.deps }}
|
run: yum install -y --allowerasing tar gzip ${{ matrix.deps }}
|
||||||
|
@ -513,7 +513,6 @@ main() {
|
|||||||
;;
|
;;
|
||||||
pacman)
|
pacman)
|
||||||
set -x
|
set -x
|
||||||
$SUDO pacman -Sy
|
|
||||||
$SUDO pacman -S tailscale --noconfirm
|
$SUDO pacman -S tailscale --noconfirm
|
||||||
$SUDO systemctl enable --now tailscaled
|
$SUDO systemctl enable --now tailscaled
|
||||||
set +x
|
set +x
|
||||||
|
Loading…
x
Reference in New Issue
Block a user