From ae7c31127c7424e46034f36aa58fbdafe582d664 Mon Sep 17 00:00:00 2001 From: PentagonLP Date: Mon, 31 May 2021 16:43:54 +0200 Subject: [PATCH] Build testing setup --- defaultpackages.ccpt | 5 ++++- testing/testpackage1.ccpt | 15 +++++++++++++++ testing/testpackage2.ccpt | 14 ++++++++++++++ testing/testpackage3.ccpt | 14 ++++++++++++++ 4 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 testing/testpackage1.ccpt create mode 100644 testing/testpackage2.ccpt create mode 100644 testing/testpackage3.ccpt diff --git a/defaultpackages.ccpt b/defaultpackages.ccpt index 7d364f6..ab819c4 100644 --- a/defaultpackages.ccpt +++ b/defaultpackages.ccpt @@ -1,7 +1,10 @@ { packages = { ccpt = "https://raw.githubusercontent.com/PentagonLP/ccpt/main/packageinfo.ccpt", - pprint = "https://raw.githubusercontent.com/PentagonLP/properprint/main/packageinfo.ccpt" + pprint = "https://raw.githubusercontent.com/PentagonLP/properprint/main/packageinfo.ccpt", + tp1 = "https://raw.githubusercontent.com/PentagonLP/ccpt/main/testing/testpackage1", + tp2 = "https://raw.githubusercontent.com/PentagonLP/ccpt/main/testing/testpackage2", + tp3 = "https://raw.githubusercontent.com/PentagonLP/ccpt/main/testing/testpackage3" }, ccptversion = "1.0" } diff --git a/testing/testpackage1.ccpt b/testing/testpackage1.ccpt new file mode 100644 index 0000000..3895b50 --- /dev/null +++ b/testing/testpackage1.ccpt @@ -0,0 +1,15 @@ +{ + name = "testpackage1", + comment = "Emtpy package to test cctp", + author = "PentagonLP", + website = "https://github.com/PentagonLP/ccpt", + newestversion = "1.0", + dependencies = { + tp2 = "1.0" + }, + install = { + url = "https://raw.githubusercontent.com/PentagonLP/properprint/main/properprint", + filename = "testpackage1", + type = "library", + } +} diff --git a/testing/testpackage2.ccpt b/testing/testpackage2.ccpt new file mode 100644 index 0000000..80c99fe --- /dev/null +++ b/testing/testpackage2.ccpt @@ -0,0 +1,14 @@ +{ + name = "testpackage2", + comment = "Emtpy package to test cctp", + author = "PentagonLP", + website = "https://github.com/PentagonLP/ccpt", + newestversion = "1.0", + dependencies = { + }, + install = { + url = "https://raw.githubusercontent.com/PentagonLP/properprint/main/properprint", + filename = "testpackage2", + type = "library", + } +} diff --git a/testing/testpackage3.ccpt b/testing/testpackage3.ccpt new file mode 100644 index 0000000..7c8c5ef --- /dev/null +++ b/testing/testpackage3.ccpt @@ -0,0 +1,14 @@ +{ + name = "testpackage3", + comment = "Emtpy package to test cctp", + author = "PentagonLP", + website = "https://github.com/PentagonLP/ccpt", + newestversion = "1.0", + dependencies = { + }, + install = { + url = "https://raw.githubusercontent.com/PentagonLP/properprint/main/properprint", + filename = "testpackage3", + type = "library", + } +}