Hopefully make CI work better
Some checks failed
Build / build-gentoo (push) Failing after 1m7s
Build / download-system-deps (push) Successful in 3m31s
Build / get-source-code (push) Successful in 10m29s
Build / build-deb (push) Failing after 5m15s
Build / build-appimage (push) Successful in 4m41s
Build / build-android (push) Failing after 3m3s
Build / build-windows (push) Failing after 7m30s
Some checks failed
Build / build-gentoo (push) Failing after 1m7s
Build / download-system-deps (push) Successful in 3m31s
Build / get-source-code (push) Successful in 10m29s
Build / build-deb (push) Failing after 5m15s
Build / build-appimage (push) Successful in 4m41s
Build / build-android (push) Failing after 3m3s
Build / build-windows (push) Failing after 7m30s
This commit is contained in:
parent
5475841a3f
commit
9a1fc78248
2 changed files with 2 additions and 1 deletions
|
@ -79,7 +79,7 @@ def main() -> None:
|
||||||
os.chdir(basedir)
|
os.chdir(basedir)
|
||||||
os.makedirs("build", exist_ok=True)
|
os.makedirs("build", exist_ok=True)
|
||||||
os.chdir("build")
|
os.chdir("build")
|
||||||
args=["cmake", ".."]
|
args=["cmake", "..", "-DBUILD_SDL=ON", "-DBUILD_SOUNDTOUCH=ON"]
|
||||||
for definition in p.cmake_vars:
|
for definition in p.cmake_vars:
|
||||||
args.append("-D%s" % definition)
|
args.append("-D%s" % definition)
|
||||||
ret = call(args);
|
ret = call(args);
|
||||||
|
|
1
setup.sh
1
setup.sh
|
@ -1,4 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
pushd "$(dirname "$0")/subprojects/vgmstream"
|
pushd "$(dirname "$0")/subprojects/vgmstream"
|
||||||
git apply ../../vgmstream.patch
|
git apply ../../vgmstream.patch
|
||||||
|
git submodule update --init --recursive
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Reference in a new issue