2017-01-13 01:18:25 +00:00
|
|
|
# NOTE: This file is not part of the official higan source, it's been added
|
|
|
|
# to help build WIP binaries with minimal fuss.
|
|
|
|
|
|
|
|
image: debian:stable
|
|
|
|
|
2018-05-18 05:26:41 +00:00
|
|
|
higan-linux-x86_64-binaries:
|
2017-01-13 01:18:25 +00:00
|
|
|
script:
|
2018-05-24 03:10:24 +00:00
|
|
|
- apt-get update && apt-get -y install build-essential libgtk2.0-dev libpulse-dev mesa-common-dev libgtksourceview2.0-dev libcairo2-dev libsdl2-dev libxv-dev libao-dev libopenal-dev libudev-dev mkdocs
|
2018-02-01 08:29:18 +00:00
|
|
|
- make -C genius
|
2018-10-04 12:17:49 +00:00
|
|
|
- make -C icarus
|
2018-06-11 04:54:49 +00:00
|
|
|
- make -C higan target=higan
|
2017-10-27 06:16:29 +00:00
|
|
|
- LC_ALL=C.UTF-8 mkdocs build
|
2017-01-13 01:18:25 +00:00
|
|
|
- mkdir higan-nightly
|
2018-02-01 08:29:18 +00:00
|
|
|
- cp -a genius/out/genius higan-nightly/genius
|
2018-12-20 08:58:33 +00:00
|
|
|
- cp -a icarus/out/icarus higan-nightly/icarus
|
2018-10-04 12:17:49 +00:00
|
|
|
- cp -a icarus/Database higan-nightly/
|
|
|
|
- cp -a icarus/Firmware higan-nightly/
|
2017-01-13 01:18:25 +00:00
|
|
|
- cp -a higan/out/higan higan-nightly/higan
|
2018-05-09 04:04:45 +00:00
|
|
|
- cp -a higan/systems/ higan-nightly/
|
|
|
|
- cp -a shaders higan-nightly/
|
2017-10-27 05:58:41 +00:00
|
|
|
- cp -a docs_build higan-nightly/docs
|
|
|
|
- cp -a GPLv3.txt higan-nightly/
|
2017-01-13 01:18:25 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- higan-nightly/*
|
|
|
|
|
2018-06-02 03:21:16 +00:00
|
|
|
bsnes-linux-x86_64-binaries:
|
|
|
|
script:
|
|
|
|
- apt-get update && apt-get -y install build-essential libgtk2.0-dev libpulse-dev mesa-common-dev libgtksourceview2.0-dev libcairo2-dev libsdl2-dev libxv-dev libao-dev libopenal-dev libudev-dev
|
2018-06-11 04:54:49 +00:00
|
|
|
- make -C higan target=bsnes
|
2018-06-02 03:21:16 +00:00
|
|
|
- mkdir bsnes-nightly
|
|
|
|
- cp -a higan/out/bsnes bsnes-nightly/bsnes
|
|
|
|
- cp -a shaders bsnes-nightly/
|
|
|
|
- cp -a GPLv3.txt bsnes-nightly/
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- bsnes-nightly/*
|
2018-05-18 05:26:41 +00:00
|
|
|
|
|
|
|
higan-windows-x86_64-binaries:
|
2017-01-13 01:18:25 +00:00
|
|
|
script:
|
2017-10-27 05:58:41 +00:00
|
|
|
- apt-get update && apt-get -y install build-essential mingw-w64 mkdocs
|
2018-02-16 01:53:19 +00:00
|
|
|
# genius does not currently build on Windows due to lack of a combo edit control in hiro
|
2018-05-24 03:10:24 +00:00
|
|
|
#- make -C genius platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
|
|
|
|
- make -C icarus platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
|
2018-06-11 04:54:49 +00:00
|
|
|
- make -C higan target=higan platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
|
2017-10-27 06:16:29 +00:00
|
|
|
- LC_ALL=C.UTF-8 mkdocs build
|
2017-01-13 01:18:25 +00:00
|
|
|
- mkdir higan-nightly
|
2018-02-16 01:53:19 +00:00
|
|
|
#- cp -a genius/out/genius higan-nightly/genius.exe
|
2017-01-13 01:18:25 +00:00
|
|
|
- cp -a icarus/out/icarus higan-nightly/icarus.exe
|
2018-10-04 12:17:49 +00:00
|
|
|
- cp -a icarus/Database higan-nightly/
|
|
|
|
- cp -a icarus/Firmware higan-nightly/
|
2017-01-13 01:18:25 +00:00
|
|
|
- cp -a higan/out/higan higan-nightly/higan.exe
|
2018-05-09 04:04:45 +00:00
|
|
|
- cp -a higan/systems/ higan-nightly/
|
|
|
|
- cp -a shaders higan-nightly/
|
2017-10-27 05:58:41 +00:00
|
|
|
- cp -a docs_build higan-nightly/docs
|
|
|
|
- cp -a GPLv3.txt higan-nightly/
|
2017-01-13 01:18:25 +00:00
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- higan-nightly/*
|
2017-10-08 03:25:42 +00:00
|
|
|
|
2018-06-02 03:21:16 +00:00
|
|
|
bsnes-windows-x86_64-binaries:
|
|
|
|
script:
|
|
|
|
- apt-get update && apt-get -y install build-essential mingw-w64
|
2018-06-11 04:54:49 +00:00
|
|
|
- make -C higan target=bsnes platform=windows compiler="x86_64-w64-mingw32-g++" windres="x86_64-w64-mingw32-windres"
|
2018-06-02 03:21:16 +00:00
|
|
|
- mkdir bsnes-nightly
|
|
|
|
- cp -a higan/out/bsnes bsnes-nightly/bsnes.exe
|
|
|
|
- cp -a shaders bsnes-nightly/
|
|
|
|
- cp -a GPLv3.txt bsnes-nightly/
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- bsnes-nightly/*
|