mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
f24893bcb1
* Prepare to update deps/switchres * Squashed 'deps/switchres/' content from commit ca72648b32 git-subtree-dir: deps/switchres git-subtree-split: ca72648b3253eca8c5addf64d1e4aa1c43f5db94 * Add CRT modeswitching to KMS Display the real refresh rate Enable the CRT SwitchRes menu Add another switchres.ini path for Lakka
59 lines
1.2 KiB
YAML
59 lines
1.2 KiB
YAML
# This file is a template, and might need editing before it works on your project.
|
|
# use the official gcc image, based on debian
|
|
# can use verions as well, like gcc:5.2
|
|
# see https://hub.docker.com/_/gcc/
|
|
image: gcc:latest
|
|
|
|
before_script:
|
|
- apt update
|
|
- apt -y install make
|
|
|
|
.pre_requisites_linux: &prerequisiteslinux
|
|
before_script:
|
|
- apt update
|
|
- apt -y install make
|
|
|
|
.pre_requisites_win32: &prerequisiteswin32
|
|
image: "ubuntu:rolling"
|
|
before_script:
|
|
- apt update
|
|
- apt -y install make mingw-w64
|
|
|
|
|
|
linux:x86_64:standalone:
|
|
stage: build
|
|
<<: *prerequisiteslinux
|
|
script:
|
|
- make
|
|
|
|
linux:x86_64:lib:
|
|
stage: build
|
|
<<: *prerequisiteslinux
|
|
script:
|
|
- make libswitchres
|
|
|
|
win32:x86_64:standalone:
|
|
stage: build
|
|
<<: *prerequisiteswin32
|
|
script:
|
|
- make PLATFORM=NT CROSS_COMPILE=x86_64-w64-mingw32-
|
|
|
|
win32:x86_64:lib:
|
|
stage: build
|
|
<<: *prerequisiteswin32
|
|
script:
|
|
- make PLATFORM=NT CROSS_COMPILE=x86_64-w64-mingw32- libswitchres
|
|
|
|
|
|
win32:i686:standalone:
|
|
stage: build
|
|
<<: *prerequisiteswin32
|
|
script:
|
|
- make PLATFORM=NT CROSS_COMPILE=i686-w64-mingw32-
|
|
|
|
|
|
win32:i686:lib:
|
|
stage: build
|
|
<<: *prerequisiteswin32
|
|
script:
|
|
- make PLATFORM=NT CROSS_COMPILE=i686-w64-mingw32- libswitchres |