Dallas-Makerspace / Malum-Game-Engine

Welcome to your internship with K Industries
https://dallasmakerspace.org
GNU General Public License v3.0
1 stars 0 forks source link

(feat) Should have nightly automated builds #25

Closed denzuko closed 5 years ago

denzuko commented 6 years ago

As a developer I would like to have a nightly built of the game for testing And I would like to have the build automated via CICD And I would like to have both a windows and Android version of the game So that we can distribute a release And so that we can test changes on deliverable with real world hardware

denzuko commented 6 years ago

Docs: https://docs.godotengine.org/ko/latest/getting_started/workflow/export/exporting_projects.html

denzuko commented 6 years ago

Docker image: https://hub.docker.com/r/mattiascibien/godot-docker/

denzuko commented 6 years ago

Dockerfile:

FROM mattiascibien/godot-docker:latest ARG PLATFORM="Linux X11" ENV TARGET $PLATFORM COPY . /src RUN godot -export "${TARGET}" /src

denzuko commented 6 years ago

Todo: