move standalone projects into own directory

This commit is contained in:
2023-04-27 11:39:41 -06:00
parent 5d593e22b0
commit acda704057
369 changed files with 1170 additions and 5 deletions

View File

@@ -0,0 +1,2 @@
TestNewProject/
TestNewExpressProject/

View File

@@ -0,0 +1 @@
TestNewExpressProject

View File

@@ -0,0 +1,5 @@
TestNewFlixelProject
NQNStudios
1280
720
#000000

View File

@@ -0,0 +1,6 @@
TestNewProject
NQNStudios
https://github.com/NQNStudios/kisslang
LGPL
test
test kiss new-project

View File

@@ -0,0 +1,29 @@
#! /bin/bash
# Test kiss new-project command
if [ -d TestNewProject ]; then
rm -rf TestNewProject
fi &&
cat new-project-input.txt | haxelib run kiss new-project && (cd TestNewProject && sh test.sh) &&
# Test kiss new-express-project command
haxelib install hxnodejs &&
if [ -d testnewexpressproject ]; then
rm -rf testnewexpressproject
fi &&
cat new-express-project-input.txt | haxelib run kiss new-express-project && (cd testnewexpressproject && sh test.sh) &&
# Test kiss new-flixel-project command
if [ ! -z "$CI_OS_NAME" ]
then
haxelib install lime
haxelib install openfl
haxelib install flixel
fi &&
if [ -d TestNewFlixelProject ]; then
rm -rf TestNewFlixelProject
fi &&
cat new-flixel-project-input.txt | haxelib run kiss new-flixel-project && (cd TestNewFlixelProject && haxelib run lime build neko)
# &&
# TODO test other kiss project templates