aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro de Medeiros <pedro.medeiros@gmail.com>2021-09-21 23:20:56 -0300
committerPedro de Medeiros <pedro.medeiros@gmail.com>2021-09-22 11:57:09 -0300
commit5fb66f82f5ec904d3ac8b4ff53d96048bad3eabd (patch)
tree36f45e72a48f60a5395fc2958cb9e3567be04d7d
parent6d66d684e8093f1dd76808d74efb4608cb69cdc2 (diff)
downloadubox-msx-lib-5fb66f82f5ec904d3ac8b4ff53d96048bad3eabd.tar.gz
ubox-msx-lib-5fb66f82f5ec904d3ac8b4ff53d96048bad3eabd.zip
Adding .gitlab-ci.yml to build ROMs automatically.
-rw-r--r--.gitlab-ci.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..3020c90
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,11 @@
+image: registry.gitlab.com/pvmm/ubox-msx-lib/ubox
+
+stages:
+ - build
+
+build-job:
+ stage: build
+ script:
+ - echo "Compiling the code..."
+ - make game
+ - echo "Compile complete."