From d34041c1e3a62972f66506bc311d4f4677c5b610 Mon Sep 17 00:00:00 2001 From: Michiel Hazelhof Date: Tue, 5 Aug 2025 12:05:05 +0200 Subject: [PATCH] Test generating user and organization licenses during build check (#252) --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6bbf697..c367ed1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,4 +12,13 @@ jobs: command: ./generateKeys.sh - run: name: Build script - command: ./build.sh y \ No newline at end of file + command: ./build.sh y + - run: + name: Build licenseGen + command: ./src/licenseGen/build.sh + - run: + name: Test generating user license + command: ./src/licenseGen/run.sh ./.keys/cert.pfx user TestName TestEmail@example.com 4a619d4a-522d-4c70-8596-affb5b607c23 + - run: + name: Test generating organization license + command: ./src/licenseGen/run.sh ./.keys/cert.pfx org TestName TestEmail@example.com 4a619d4a-522d-4c70-8596-affb5b607c23 \ No newline at end of file