Omit sudo
Some checks failed
Build Dusk / build-linux (push) Failing after 36s
Build Dusk / build-psp (push) Failing after 31s
Build Dusk / release (push) Has been skipped

This commit is contained in:
2025-11-12 13:03:13 -06:00
parent f7fbd16e57
commit 0cfc6d0503

View File

@@ -16,8 +16,8 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get update apt-get update
sudo apt-get install -y build-essential cmake python3 python3-pip libsdl2-dev libgl1-mesa-dev apt-get install -y build-essential cmake python3 python3-pip libsdl2-dev libgl1-mesa-dev
- name: Configure CMake - name: Configure CMake
run: cmake -S . -B build -DDUSK_TARGET_SYSTEM=linux run: cmake -S . -B build -DDUSK_TARGET_SYSTEM=linux
- name: Build - name: Build
@@ -37,8 +37,8 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get update apt-get update
sudo apt-get install -y build-essential cmake python3 python3-pip wget apt-get install -y build-essential cmake python3 python3-pip wget
- name: Configure CMake - name: Configure CMake
run: cmake -S . -B build -DDUSK_TARGET_SYSTEM=psp run: cmake -S . -B build -DDUSK_TARGET_SYSTEM=psp
- name: Build - name: Build