mirror of
https://github.com/ddworken/hishtory.git
synced 2024-11-22 08:14:02 +01:00
Drop sudo for OpenSUSE
This commit is contained in:
parent
d9d13e8329
commit
826cfd237a
9
.github/workflows/distro-smoke-test.yml
vendored
9
.github/workflows/distro-smoke-test.yml
vendored
@ -28,12 +28,19 @@ jobs:
|
||||
# Work around a weird bug where zsh on ubuntu actions gives that directory 0777 which makes zsh refuse to start
|
||||
chmod 0755 -R /usr/share/zsh/
|
||||
- name: DNF-based Setup
|
||||
if: ${{ matrix.distro == 'fedora:latest' || matrix.distro == 'opensuse/leap:latest' || matrix.distro == 'rockylinux:latest' }}
|
||||
if: ${{ matrix.distro == 'fedora:latest' || matrix.distro == 'rockylinux:latest' }}
|
||||
run: |
|
||||
|
||||
# Install our dependencies
|
||||
sudo dnf update -y
|
||||
sudo dnf install -y zsh tmux fish make gcc psmisc
|
||||
- name: OpenSUSE Setup
|
||||
if: ${{ matrix.distro == 'opensuse/leap:latest' }}
|
||||
run: |
|
||||
|
||||
# Install our dependencies (no sudo for OpenSUSE)
|
||||
dnf update -y
|
||||
dnf install -y zsh tmux fish make gcc psmisc
|
||||
- name: Arch-based Setup
|
||||
if: ${{ matrix.distro == 'archlinux:latest' }}
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user