mirror of https://github.com/snes9xgit/snes9x.git
Add Linux & FreeBSD X11 CI builds
This commit is contained in:
parent
26ea0cc26b
commit
c480642fb8
50
.cirrus.yml
50
.cirrus.yml
|
@ -4,7 +4,7 @@
|
||||||
# snes9x
|
# snes9x
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
snes9x_linux-amd64_task:
|
snes9x_linux-gtk-amd64_task:
|
||||||
container:
|
container:
|
||||||
image: gcc:latest
|
image: gcc:latest
|
||||||
|
|
||||||
|
@ -19,10 +19,54 @@ snes9x_linux-amd64_task:
|
||||||
package_script:
|
package_script:
|
||||||
- mkdir snes9x
|
- mkdir snes9x
|
||||||
- cp -ar build/snes9x-gtk README.md LICENSE docs data gtk/AUTHORS snes9x/
|
- cp -ar build/snes9x-gtk README.md LICENSE docs data gtk/AUTHORS snes9x/
|
||||||
- tar -caf "snes9x-${CIRRUS_CHANGE_IN_REPO}.txz" snes9x
|
- tar -caf "snes9x-gtk-${CIRRUS_CHANGE_IN_REPO}.txz" snes9x
|
||||||
|
|
||||||
build_artifacts:
|
build_artifacts:
|
||||||
path: "snes9x-${CIRRUS_CHANGE_IN_REPO}.txz"
|
path: "snes9x-gtk-${CIRRUS_CHANGE_IN_REPO}.txz"
|
||||||
|
|
||||||
|
|
||||||
|
snes9x_linux-x11-amd64_task:
|
||||||
|
container:
|
||||||
|
image: gcc:latest
|
||||||
|
|
||||||
|
setup_script:
|
||||||
|
- apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install libxv-dev libxinerama-dev
|
||||||
|
|
||||||
|
compile_script:
|
||||||
|
- cd unix
|
||||||
|
- touch configure
|
||||||
|
- ./configure
|
||||||
|
- make -j2
|
||||||
|
|
||||||
|
package_script:
|
||||||
|
- mkdir snes9x
|
||||||
|
- cp -ar unix/snes9x unix/docs unix/snes9x.conf.default README.md LICENSE data snes9x/
|
||||||
|
- tar -caf "snes9x-x11-${CIRRUS_CHANGE_IN_REPO}.txz" snes9x
|
||||||
|
|
||||||
|
build_artifacts:
|
||||||
|
path: "snes9x-x11-${CIRRUS_CHANGE_IN_REPO}.txz"
|
||||||
|
|
||||||
|
|
||||||
|
snes9x_freebsd-x11-amd64_task:
|
||||||
|
freebsd_instance:
|
||||||
|
image: freebsd-12-1-release-amd64
|
||||||
|
|
||||||
|
setup_script:
|
||||||
|
- pkg install -y gmake pkgconf minizip libX11 libXext
|
||||||
|
|
||||||
|
compile_script:
|
||||||
|
- cd unix
|
||||||
|
- touch configure
|
||||||
|
- ./configure
|
||||||
|
- gmake -j2
|
||||||
|
|
||||||
|
package_script:
|
||||||
|
- mkdir snes9x
|
||||||
|
- cp -a unix/snes9x unix/docs unix/snes9x.conf.default README.md LICENSE data snes9x/
|
||||||
|
- tar -caf "snes9x-x11-${CIRRUS_CHANGE_IN_REPO}.txz" snes9x
|
||||||
|
|
||||||
|
build_artifacts:
|
||||||
|
path: "snes9x-x11-${CIRRUS_CHANGE_IN_REPO}.txz"
|
||||||
|
|
||||||
|
|
||||||
snes9x_macOS-amd64_task:
|
snes9x_macOS-amd64_task:
|
||||||
|
|
10
README.md
10
README.md
|
@ -12,16 +12,20 @@ Download nightly builds from continuous integration:
|
||||||
### snes9x
|
### snes9x
|
||||||
|
|
||||||
| OS | status |
|
| OS | status |
|
||||||
|---------|--------------------------------------------|
|
|---------------|--------------------------------------------------|
|
||||||
| Windows | [![Status][s9x-win-all]][appveyor] |
|
| Windows | [![Status][s9x-win-all]][appveyor] |
|
||||||
| Linux | [![Status][snes9x_linux-amd64]][cirrus-ci] |
|
| Linux (GTK) | [![Status][snes9x_linux-gtk-amd64]][cirrus-ci] |
|
||||||
|
| Linux (X11) | [![Status][snes9x_linux-x11-amd64]][cirrus-ci] |
|
||||||
|
| FreeBSD (X11) | [![Status][snes9x_freebsd-x11-amd64]][cirrus-ci] |
|
||||||
| macOS | [![Status][snes9x_macOS-amd64]][cirrus-ci] |
|
| macOS | [![Status][snes9x_macOS-amd64]][cirrus-ci] |
|
||||||
|
|
||||||
[appveyor]: https://ci.appveyor.com/project/snes9x/snes9x
|
[appveyor]: https://ci.appveyor.com/project/snes9x/snes9x
|
||||||
[cirrus-ci]: http://cirrus-ci.com/github/snes9xgit/snes9x
|
[cirrus-ci]: http://cirrus-ci.com/github/snes9xgit/snes9x
|
||||||
|
|
||||||
[s9x-win-all]: https://ci.appveyor.com/api/projects/status/github/snes9xgit/snes9x?branch=master&svg=true
|
[s9x-win-all]: https://ci.appveyor.com/api/projects/status/github/snes9xgit/snes9x?branch=master&svg=true
|
||||||
[snes9x_linux-amd64]: https://api.cirrus-ci.com/github/snes9xgit/snes9x.svg?task=snes9x_linux-amd64
|
[snes9x_linux-gtk-amd64]: https://api.cirrus-ci.com/github/snes9xgit/snes9x.svg?task=snes9x_linux-gtk-amd64
|
||||||
|
[snes9x_linux-x11-amd64]: https://api.cirrus-ci.com/github/snes9xgit/snes9x.svg?task=snes9x_linux-x11-amd64
|
||||||
|
[snes9x_freebsd-x11-amd64]: https://api.cirrus-ci.com/github/snes9xgit/snes9x.svg?task=snes9x_freebsd-x11-amd64
|
||||||
[snes9x_macOS-amd64]: https://api.cirrus-ci.com/github/snes9xgit/snes9x.svg?task=snes9x_macOS-amd64
|
[snes9x_macOS-amd64]: https://api.cirrus-ci.com/github/snes9xgit/snes9x.svg?task=snes9x_macOS-amd64
|
||||||
|
|
||||||
### libretro core
|
### libretro core
|
||||||
|
|
Loading…
Reference in New Issue