mirror of
https://github.com/ddworken/hishtory.git
synced 2025-02-17 02:50:49 +01:00
Drop sudo for OpenSUSE
This commit is contained in:
parent
902fb45f6f
commit
fee074b14c
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
|
# 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/
|
chmod 0755 -R /usr/share/zsh/
|
||||||
- name: DNF-based Setup
|
- 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: |
|
run: |
|
||||||
|
|
||||||
# Install our dependencies
|
# Install our dependencies
|
||||||
sudo dnf update -y
|
sudo dnf update -y
|
||||||
sudo dnf install -y zsh tmux fish make gcc psmisc
|
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
|
- name: Arch-based Setup
|
||||||
if: ${{ matrix.distro == 'archlinux:latest' }}
|
if: ${{ matrix.distro == 'archlinux:latest' }}
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user