We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 825f37f commit 83294afCopy full SHA for 83294af
.github/workflows/main.yml
@@ -94,12 +94,13 @@ jobs:
94
- name: Download YouTube Music
95
id: download_youtube_music
96
run: wget "${{ inputs.ipa_url }}" --no-verbose -O ${{ github.workspace }}/main/ytm.ipa
97
-
+
98
- name: Build Tweak for Sideloading
99
- id: build_package
100
run: |
101
cd ${{ github.workspace }}/main
102
- make clean package SIDELOADING=1
+ make clean package SIDELOADING=1 WERROR=0 \
+ ADDITIONAL_OBJCXXFLAGS="-Wno-vla-cxx-extension -Wno-error=vla-cxx-extension" \
103
+ ADDITIONAL_CFLAGS="-Wno-vla -Wno-error=vla"
104
env:
105
THEOS: ${{ github.workspace }}/theos
106
0 commit comments