add gitlab ci instructions
This commit is contained in:
parent
814fc96669
commit
0b0f82fbef
8
.gitlab-ci.yml
Normal file
8
.gitlab-ci.yml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
image: thallian/love-release
|
||||||
|
|
||||||
|
build:
|
||||||
|
script:
|
||||||
|
- make docker
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- build
|
5
Makefile
5
Makefile
@ -4,12 +4,17 @@ LOVE := love
|
|||||||
NAME := ds_alpha
|
NAME := ds_alpha
|
||||||
VERSION := 0.0.1
|
VERSION := 0.0.1
|
||||||
|
|
||||||
|
CURRENTDIR := $(realpath .)
|
||||||
SRCDIR := src
|
SRCDIR := src
|
||||||
BUILDDIR := build
|
BUILDDIR := build
|
||||||
|
|
||||||
.PHONY : all
|
.PHONY : all
|
||||||
all : run
|
all : run
|
||||||
|
|
||||||
|
.PHONY : docker
|
||||||
|
docker :
|
||||||
|
docker run --env-file=config --volume $(CURRENTDIR):/var/lib/builder/workspace thallian/love-release
|
||||||
|
|
||||||
$(BUILDDIR):
|
$(BUILDDIR):
|
||||||
mkdir -p $(BUILDDIR)
|
mkdir -p $(BUILDDIR)
|
||||||
|
|
||||||
|
8
config
Normal file
8
config
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
PROJECT_AUTHOR=Sebastian Hugentobler
|
||||||
|
PROJECT_EMAIL=sebastian@vanwa.ch
|
||||||
|
PROJECT_TITLE=Streuner Game
|
||||||
|
PROJECT_VERSION=0.0.0
|
||||||
|
PROJECT_PACKAGE=streuner
|
||||||
|
PROJECT_UTI=ch.vanwa.streuner
|
||||||
|
PROJECT_DESCRIPTION=A Game About a Band
|
||||||
|
PROJECT_URL=https://gitlab.com/thallian/streuner-game
|
Loading…
Reference in New Issue
Block a user