Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix workflow building #718

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ jobs:
sudo -n apt-get update
sudo -n apt-get upgrade -y patch autoconf automake diffutils pkgconf fakeroot git file tar bzip2 zstd python3 python3-pip
python3 -m pip install requests
sudo -n dkp-pacman --noconfirm -U \
"https://wii.leseratte10.de/devkitPro/other-stuff/dkp-toolchain-vars-1.0.2-1-any.pkg.tar.xz"
rm -rf libusbhsfs

- name: Silence all git safe directory warnings
run: git config --system --add safe.directory '*'
Expand All @@ -27,6 +26,10 @@ jobs:
run: |
git clone --recurse-submodules https://github.com/switchbrew/libnx.git

- name: Checkout latest libusbhsfs commit
run: |
git clone https://github.com/DarkMatterCore/libusbhsfs.git

- name: Set workspace permissions
run: chmod 777 -R "$GITHUB_WORKSPACE"

Expand Down