2019-12-15 16:01:44 +00:00
|
|
|
# vim: sts=2 sw=2 ai
|
|
|
|
|
2019-12-15 18:37:22 +00:00
|
|
|
################################################################################
|
|
|
|
# snes9x
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
snes9x_linux-amd64_task:
|
2019-12-15 16:01:44 +00:00
|
|
|
container:
|
|
|
|
image: gcc:latest
|
|
|
|
|
|
|
|
setup_script:
|
|
|
|
- git submodule update --init shaders/SPIRV-Cross
|
|
|
|
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install meson gettext libsdl2-dev libgtk-3-dev libminizip-dev portaudio19-dev glslang-dev
|
|
|
|
|
|
|
|
compile_script:
|
|
|
|
- meson build gtk --buildtype=release --strip
|
|
|
|
- ninja -j2 -C build
|
|
|
|
|
|
|
|
package_script:
|
|
|
|
- mkdir snes9x
|
|
|
|
- cp -ar build/snes9x-gtk README.md LICENSE docs data gtk/AUTHORS snes9x/
|
|
|
|
- tar -caf "snes9x-${CIRRUS_CHANGE_IN_REPO}.txz" snes9x
|
|
|
|
|
|
|
|
build_artifacts:
|
|
|
|
path: "snes9x-${CIRRUS_CHANGE_IN_REPO}.txz"
|
|
|
|
|
|
|
|
|
2019-12-15 18:37:22 +00:00
|
|
|
snes9x_macOS-amd64_task:
|
2019-12-15 16:01:44 +00:00
|
|
|
osx_instance:
|
|
|
|
image: mojave-xcode
|
|
|
|
|
|
|
|
compile_script:
|
|
|
|
- xcodebuild -project macosx/snes9x.xcodeproj -target Snes9x -configuration Release build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
|
|
|
|
|
|
|
|
package_script:
|
|
|
|
- mkdir snes9x
|
|
|
|
- cp -R macosx/build/Release/Snes9x.app macosx/docs README.md LICENSE snes9x/
|
|
|
|
- zip -r "snes9x-${CIRRUS_CHANGE_IN_REPO}.zip" snes9x
|
|
|
|
|
|
|
|
build_artifacts:
|
|
|
|
path: "snes9x-${CIRRUS_CHANGE_IN_REPO}.zip"
|
|
|
|
|
2019-12-15 18:37:22 +00:00
|
|
|
################################################################################
|
|
|
|
# libretro
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
libretro_linux-amd64_task:
|
|
|
|
container:
|
|
|
|
image: gcc:latest
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_linux-i386_task:
|
|
|
|
container:
|
|
|
|
image: dockcross/linux-x86
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_linux-armhf_task:
|
|
|
|
container:
|
|
|
|
image: dockcross/linux-armv7
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_linux-armv7-neon-hf_task:
|
|
|
|
container:
|
|
|
|
image: dockcross/linux-armv7
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=unix-armv7-neon-hardfloat
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_linux-arm64_task:
|
|
|
|
container:
|
|
|
|
image: dockcross/linux-arm64
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_android-arm_task:
|
|
|
|
container:
|
|
|
|
image: dockcross/android-arm
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=unix
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_android-arm64_task:
|
|
|
|
container:
|
|
|
|
image: dockcross/android-arm64
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=unix-arm64
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_emscripten_task:
|
|
|
|
container:
|
|
|
|
image: gcc:latest
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=emscripten
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro_emscripten.bc"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_macOS-amd64_task:
|
|
|
|
osx_instance:
|
|
|
|
image: mojave-xcode
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.dylib"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_nintendo-wii_task:
|
|
|
|
container:
|
|
|
|
image: devkitpro/devkitppc
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=wii
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro_wii.a"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_nintendo-switch-libnx_task:
|
|
|
|
container:
|
|
|
|
image: devkitpro/devkita64
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=libnx
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro_libnx.a"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_nintendo-ngc_task:
|
|
|
|
container:
|
|
|
|
image: devkitpro/devkitppc
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=ngc
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro_ngc.a"
|
|
|
|
|
|
|
|
|
|
|
|
libretro_playstation-psp_task:
|
|
|
|
container:
|
|
|
|
image: bkcsoft/psptoolchain
|
|
|
|
compile_script:
|
|
|
|
- make -j2 -C libretro platform=unix
|
|
|
|
build_artifacts:
|
|
|
|
path: "libretro/snes9x_libretro.so"
|
|
|
|
|