From 09bed6a9487e8c55a6ff1ea904c7f29ca090f012 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 14:34:10 +0000 Subject: [PATCH 01/50] Create pipeline FME-split-evaluator --- .harness/test.yaml | 94 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 .harness/test.yaml diff --git a/.harness/test.yaml b/.harness/test.yaml new file mode 100644 index 0000000..fff0978 --- /dev/null +++ b/.harness/test.yaml @@ -0,0 +1,94 @@ +pipeline: + name: FME-split-evaluator + identifier: FMEsplitevaluator + projectIdentifier: Harness_Split + orgIdentifier: PROD + properties: + ci: + codebase: + connectorRef: <+input> + repoName: <+input> + build: + type: PR + spec: + number: <+input> + variables: + - name: nodeVersions + type: String + value: 18.18,22.20,24.10 + stages: + - stage: + name: Build and Test + identifier: build_and_test + type: CI + spec: + cloneCodebase: true + runtime: + type: Cloud + spec: + size: small + platform: + os: Linux + arch: Amd64 + execution: + steps: + - step: + identifier: setup_node_matrix + name: Setup NodeJS Matrix + type: Run + spec: + connectorRef: account.harnessImage + image: alpine + shell: Bash + command: | + echo "Installing Node.js version <+matrix.nodeVersion>" + apt-get update + apt-get install -y curl + curl -fsSL https://deb.nodesource.com/setup_<+matrix.nodeVersion>.x | bash - + apt-get install -y nodejs + node --version + envVariables: + NODE_VERSION: <+matrix.nodeVersion> + strategy: + matrix: + nodeVersion: <+pipeline.variables.nodeVersions> + timeout: 10m + - parallel: + - step: + type: Run + name: Install NPM Dependencies + identifier: run_npm_ci + spec: + connectorRef: account.harnessImage + image: alpine + shell: Bash + command: | + npm ci + envVariables: {} + timeout: 10m + - step: + type: Run + name: Run NPM Lint + identifier: run_npm_lint + spec: + connectorRef: account.harnessImage + image: alpine + shell: Bash + command: | + npm run lint + timeout: 10m + - step: + type: Run + name: Run NPM Test + identifier: run_npm_test + spec: + connectorRef: account.harnessImage + image: alpine + shell: Bash + command: | + npm test + timeout: 10m + rollbackSteps: [] + description: This pipeline was generated by Harness AI on 2026-02-05 14:33:24 UTC by Martin Cardozo. + tags: + ai_generated: "true" From b67af229dde586897bf8ea573e49b3af40260f55 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 14:39:13 +0000 Subject: [PATCH 02/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index fff0978..3df9071 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -9,9 +9,9 @@ pipeline: connectorRef: <+input> repoName: <+input> build: - type: PR + type: branch spec: - number: <+input> + branch: main variables: - name: nodeVersions type: String @@ -89,6 +89,6 @@ pipeline: npm test timeout: 10m rollbackSteps: [] - description: This pipeline was generated by Harness AI on 2026-02-05 14:33:24 UTC by Martin Cardozo. + description: This pipeline was updated by Harness AI on 2026-02-05 14:38:50 UTC by Martin Cardozo. tags: ai_generated: "true" From a6698c74551333ba1a1c0111b9f3c9bf5d31a485 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 14:39:36 +0000 Subject: [PATCH 03/50] Create inputset Default --- .../FMEsplitevaluator/input_sets/Default.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml diff --git a/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml b/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml new file mode 100644 index 0000000..91eacc6 --- /dev/null +++ b/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml @@ -0,0 +1,16 @@ +inputSet: + pipeline: + identifier: FMEsplitevaluator + properties: + ci: + codebase: + connectorRef: splitio + repoName: split-evaluator + build: + spec: + branch: <+input> + type: branch + name: Default + identifier: Default + orgIdentifier: PROD + projectIdentifier: Harness_Split From b37d85556b979cdecfa9995828a9fcf39c033a1e Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 14:41:51 +0000 Subject: [PATCH 04/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 3df9071..149f4aa 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -51,7 +51,7 @@ pipeline: NODE_VERSION: <+matrix.nodeVersion> strategy: matrix: - nodeVersion: <+pipeline.variables.nodeVersions> + nodeVersion: <+pipeline.variables.nodeVersions.split(",")> timeout: 10m - parallel: - step: @@ -89,6 +89,6 @@ pipeline: npm test timeout: 10m rollbackSteps: [] - description: This pipeline was updated by Harness AI on 2026-02-05 14:38:50 UTC by Martin Cardozo. + description: This pipeline was updated by Harness AI on 2026-02-05 14:41:40 UTC by Martin Cardozo. tags: ai_generated: "true" From 0c4709044fce8bbcb2cfc8f9e0f7e5847385e48f Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 14:49:28 +0000 Subject: [PATCH 05/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 149f4aa..d2dc1c6 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -39,7 +39,7 @@ pipeline: spec: connectorRef: account.harnessImage image: alpine - shell: Bash + shell: Sh command: | echo "Installing Node.js version <+matrix.nodeVersion>" apt-get update @@ -61,7 +61,7 @@ pipeline: spec: connectorRef: account.harnessImage image: alpine - shell: Bash + shell: Sh command: | npm ci envVariables: {} @@ -73,7 +73,7 @@ pipeline: spec: connectorRef: account.harnessImage image: alpine - shell: Bash + shell: Sh command: | npm run lint timeout: 10m @@ -84,11 +84,11 @@ pipeline: spec: connectorRef: account.harnessImage image: alpine - shell: Bash + shell: Sh command: | npm test timeout: 10m rollbackSteps: [] - description: This pipeline was updated by Harness AI on 2026-02-05 14:41:40 UTC by Martin Cardozo. + description: This pipeline was updated by Harness AI on 2026-02-05 14:49:20 UTC by Martin Cardozo. tags: ai_generated: "true" From 973dd0d2cf340bffb6e06100a0236b8b50194661 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 15:12:45 +0000 Subject: [PATCH 06/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index d2dc1c6..b7b1112 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,8 +38,8 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: alpine - shell: Sh + image: Ubuntu:22.04 + shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" apt-get update @@ -60,8 +60,8 @@ pipeline: identifier: run_npm_ci spec: connectorRef: account.harnessImage - image: alpine - shell: Sh + image: Ubuntu:22.04 + shell: Bash command: | npm ci envVariables: {} @@ -72,8 +72,8 @@ pipeline: identifier: run_npm_lint spec: connectorRef: account.harnessImage - image: alpine - shell: Sh + image: Ubuntu:22.04 + shell: Bash command: | npm run lint timeout: 10m @@ -83,8 +83,8 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: alpine - shell: Sh + image: Ubuntu:22.04 + shell: Bash command: | npm test timeout: 10m From 511697dddd3f181a47b70373d46eb98b4f87879a Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 15:18:08 +0000 Subject: [PATCH 07/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index b7b1112..685c98f 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,7 +38,7 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: Ubuntu:22.04 + image: ubuntu:22.04 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" @@ -60,7 +60,7 @@ pipeline: identifier: run_npm_ci spec: connectorRef: account.harnessImage - image: Ubuntu:22.04 + image: ubuntu:22.04 shell: Bash command: | npm ci @@ -72,7 +72,7 @@ pipeline: identifier: run_npm_lint spec: connectorRef: account.harnessImage - image: Ubuntu:22.04 + image: ubuntu:22.04 shell: Bash command: | npm run lint @@ -83,12 +83,12 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: Ubuntu:22.04 + image: ubuntu:22.04 shell: Bash command: | npm test timeout: 10m rollbackSteps: [] - description: This pipeline was updated by Harness AI on 2026-02-05 14:49:20 UTC by Martin Cardozo. + description: This pipeline was updated by Harness AI on 2026-02-05 15:14:58 UTC by Martin Cardozo. tags: ai_generated: "true" From acbd87349d53c6d5a063ac41beee25b7f8babaa0 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 15:25:38 +0000 Subject: [PATCH 08/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 685c98f..0cbcde0 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -63,6 +63,8 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | + apt-get update + apt-get install -y nodejs npm npm ci envVariables: {} timeout: 10m @@ -75,6 +77,11 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | + apt-get update + apt-get install -y curl + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - + apt-get install -y nodejs + node --version npm run lint timeout: 10m - step: @@ -86,9 +93,11 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | + apt-get update + apt-get install -y nodejs npm npm test timeout: 10m rollbackSteps: [] - description: This pipeline was updated by Harness AI on 2026-02-05 15:14:58 UTC by Martin Cardozo. tags: ai_generated: "true" + description: This pipeline was updated by Harness AI on 2026-02-05 15:23:09 UTC by Martin Cardozo. From 3dd2c904d28be9af6c408cb48bae88898012d41c Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 15:31:33 +0000 Subject: [PATCH 09/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 88 ++++++++++++++++++++++------------------------ 1 file changed, 43 insertions(+), 45 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 0cbcde0..0e9e0e3 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -53,51 +53,49 @@ pipeline: matrix: nodeVersion: <+pipeline.variables.nodeVersions.split(",")> timeout: 10m - - parallel: - - step: - type: Run - name: Install NPM Dependencies - identifier: run_npm_ci - spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 - shell: Bash - command: | - apt-get update - apt-get install -y nodejs npm - npm ci - envVariables: {} - timeout: 10m - - step: - type: Run - name: Run NPM Lint - identifier: run_npm_lint - spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 - shell: Bash - command: | - apt-get update - apt-get install -y curl - curl -fsSL https://deb.nodesource.com/setup_18.x | bash - - apt-get install -y nodejs - node --version - npm run lint - timeout: 10m - - step: - type: Run - name: Run NPM Test - identifier: run_npm_test - spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 - shell: Bash - command: | - apt-get update - apt-get install -y nodejs npm - npm test - timeout: 10m - rollbackSteps: [] + - step: + type: Run + name: Install NPM Dependencies + identifier: run_npm_ci + spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 + shell: Bash + command: | + apt-get update + apt-get install -y nodejs npm + npm ci + envVariables: {} + timeout: 10m + - step: + type: Run + name: Run NPM Lint + identifier: run_npm_lint + spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 + shell: Bash + command: | + apt-get update + apt-get install -y curl + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - + apt-get install -y nodejs + node --version + npm run lint + timeout: 10m + - step: + type: Run + name: Run NPM Test + identifier: run_npm_test + spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 + shell: Bash + command: | + apt-get update + apt-get install -y nodejs npm + npm test + timeout: 10m tags: ai_generated: "true" description: This pipeline was updated by Harness AI on 2026-02-05 15:23:09 UTC by Martin Cardozo. From bf15c3e70fdc9aa37148a8741e89b111db39077e Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 15:53:48 +0000 Subject: [PATCH 10/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index 0e9e0e3..e9d8d54 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -92,6 +92,8 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | + node -v || echo "Node NOT FOUND" + npm -v || echo "NPM NOT FOUND" apt-get update apt-get install -y nodejs npm npm test From a338001160b6464e15c2ae359fa12d0188c2ebbc Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 16:15:33 +0000 Subject: [PATCH 11/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index e9d8d54..d2db979 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -92,10 +92,10 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | - node -v || echo "Node NOT FOUND" - npm -v || echo "NPM NOT FOUND" apt-get update apt-get install -y nodejs npm + node -v || echo "Node NOT FOUND" + npm -v || echo "NPM NOT FOUND" npm test timeout: 10m tags: From d6ee26b761e753e5fd324f2e03f99f76b7c1d620 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 16:22:03 +0000 Subject: [PATCH 12/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index d2db979..61de945 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,7 +38,7 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: node:16-ubuntu shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" @@ -59,7 +59,7 @@ pipeline: identifier: run_npm_ci spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: node:16-ubuntu shell: Bash command: | apt-get update @@ -73,7 +73,7 @@ pipeline: identifier: run_npm_lint spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: node:16-ubuntu shell: Bash command: | apt-get update @@ -89,7 +89,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: node:16-ubuntu shell: Bash command: | apt-get update From 286e005741454a0950f1e406938d3d09e7671242 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 16:23:43 +0000 Subject: [PATCH 13/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 61de945..6856fd2 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,7 +38,7 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: node:16-ubuntu + image: ubuntu:22.94 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" @@ -59,7 +59,7 @@ pipeline: identifier: run_npm_ci spec: connectorRef: account.harnessImage - image: node:16-ubuntu + image: ubuntu:22.94 shell: Bash command: | apt-get update @@ -73,7 +73,7 @@ pipeline: identifier: run_npm_lint spec: connectorRef: account.harnessImage - image: node:16-ubuntu + image: ubuntu:22.94 shell: Bash command: | apt-get update @@ -89,7 +89,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: node:16-ubuntu + image: ubuntu:22.94 shell: Bash command: | apt-get update From 081c05cf903e26e9a679b2ffeb21f7d3c8fe7c77 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 16:26:11 +0000 Subject: [PATCH 14/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 6856fd2..293037d 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -89,7 +89,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: ubuntu:22.94 + image: node:20-ubuntu shell: Bash command: | apt-get update From 9a5fd361b8644dec4ffdf16699a29db3afa748b9 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 16:27:41 +0000 Subject: [PATCH 15/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 293037d..fbb338c 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,7 +38,7 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: ubuntu:22.94 + image: ubuntu:22.04 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" @@ -59,7 +59,7 @@ pipeline: identifier: run_npm_ci spec: connectorRef: account.harnessImage - image: ubuntu:22.94 + image: ubuntu:22.04 shell: Bash command: | apt-get update @@ -73,7 +73,7 @@ pipeline: identifier: run_npm_lint spec: connectorRef: account.harnessImage - image: ubuntu:22.94 + image: ubuntu:22.04 shell: Bash command: | apt-get update From 497766331a8e7c45217b945ae3fc88d7c7a3f5e0 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 16:31:59 +0000 Subject: [PATCH 16/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index fbb338c..29577db 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -89,7 +89,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: node:20-ubuntu + image: ubuntu-24.04 shell: Bash command: | apt-get update From b19578032f17e76f0972a8a4981beb4a0ca6e075 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 18:09:22 +0000 Subject: [PATCH 17/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 29577db..fce064f 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -89,7 +89,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: ubuntu-24.04 + image: ubuntu:24.04 shell: Bash command: | apt-get update From f5e168887007e615684fbfd8adfcbcfc2cf71486 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 20:07:36 +0000 Subject: [PATCH 18/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index fce064f..ff121b7 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -45,7 +45,7 @@ pipeline: apt-get update apt-get install -y curl curl -fsSL https://deb.nodesource.com/setup_<+matrix.nodeVersion>.x | bash - - apt-get install -y nodejs + apt-get install -y nodejs npm node --version envVariables: NODE_VERSION: <+matrix.nodeVersion> @@ -62,8 +62,6 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | - apt-get update - apt-get install -y nodejs npm npm ci envVariables: {} timeout: 10m @@ -76,11 +74,6 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | - apt-get update - apt-get install -y curl - curl -fsSL https://deb.nodesource.com/setup_18.x | bash - - apt-get install -y nodejs - node --version npm run lint timeout: 10m - step: @@ -92,12 +85,5 @@ pipeline: image: ubuntu:24.04 shell: Bash command: | - apt-get update - apt-get install -y nodejs npm - node -v || echo "Node NOT FOUND" - npm -v || echo "NPM NOT FOUND" npm test timeout: 10m - tags: - ai_generated: "true" - description: This pipeline was updated by Harness AI on 2026-02-05 15:23:09 UTC by Martin Cardozo. From 1d020e6d4acc55a1c588e0b16024fe3028e5d0a2 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 20:13:24 +0000 Subject: [PATCH 19/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index ff121b7..1d49204 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -58,8 +58,6 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm ci @@ -70,8 +68,6 @@ pipeline: name: Run NPM Lint identifier: run_npm_lint spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm run lint @@ -81,8 +77,6 @@ pipeline: name: Run NPM Test identifier: run_npm_test spec: - connectorRef: account.harnessImage - image: ubuntu:24.04 shell: Bash command: | npm test From 8626320c8f927c2e8a2ee9c9b85799c423832e87 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 20:26:39 +0000 Subject: [PATCH 20/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 1d49204..b3113ef 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -6,8 +6,8 @@ pipeline: properties: ci: codebase: - connectorRef: <+input> - repoName: <+input> + connectorRef: splitio + repoName: split-evaluator build: type: branch spec: @@ -33,12 +33,10 @@ pipeline: execution: steps: - step: - identifier: setup_node_matrix + identifier: setup_node name: Setup NodeJS Matrix type: Run spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" @@ -46,7 +44,6 @@ pipeline: apt-get install -y curl curl -fsSL https://deb.nodesource.com/setup_<+matrix.nodeVersion>.x | bash - apt-get install -y nodejs npm - node --version envVariables: NODE_VERSION: <+matrix.nodeVersion> strategy: From 37fa1715dcbb6f1c4e81d13a34a05af99b6d4dd2 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 20:29:19 +0000 Subject: [PATCH 21/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index b3113ef..138385b 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -37,6 +37,8 @@ pipeline: name: Setup NodeJS Matrix type: Run spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" From 6b29329b5ba3c96c9dae641b4ef40b8c57fb7056 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 20:49:06 +0000 Subject: [PATCH 22/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index 138385b..bf2ec2b 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -76,6 +76,8 @@ pipeline: name: Run NPM Test identifier: run_npm_test spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | npm test From c7df2ccc07d6dd3d1306a6455443f16f0330f706 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Thu, 5 Feb 2026 20:52:42 +0000 Subject: [PATCH 23/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index bf2ec2b..14dda52 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,6 +57,8 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | npm ci From a1ddeaecc4297191917c375730b28717db8fc061 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 14:20:11 +0000 Subject: [PATCH 24/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 14dda52..2f66347 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,12 +57,9 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm ci - envVariables: {} timeout: 10m - step: type: Run From 5c4f1b551a96ab942702ff9f5798eb4e624ba07a Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 14:25:01 +0000 Subject: [PATCH 25/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 2f66347..f934ed3 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -34,7 +34,7 @@ pipeline: steps: - step: identifier: setup_node - name: Setup NodeJS Matrix + name: Setup NodeJS type: Run spec: connectorRef: account.harnessImage @@ -63,7 +63,7 @@ pipeline: timeout: 10m - step: type: Run - name: Run NPM Lint + name: Lint identifier: run_npm_lint spec: shell: Bash @@ -72,11 +72,9 @@ pipeline: timeout: 10m - step: type: Run - name: Run NPM Test + name: Test identifier: run_npm_test spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm test From 597255ef73d57510b486926793a0657a44d2ecb0 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 14:57:22 +0000 Subject: [PATCH 26/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index f934ed3..6105c9d 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,6 +57,8 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | npm ci @@ -66,6 +68,8 @@ pipeline: name: Lint identifier: run_npm_lint spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | npm run lint @@ -75,6 +79,8 @@ pipeline: name: Test identifier: run_npm_test spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | npm test From 9ce6bf1e7072887ed78b6f491169e9eed6a4d325 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 15:11:38 +0000 Subject: [PATCH 27/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 6105c9d..f934ed3 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,8 +57,6 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm ci @@ -68,8 +66,6 @@ pipeline: name: Lint identifier: run_npm_lint spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm run lint @@ -79,8 +75,6 @@ pipeline: name: Test identifier: run_npm_test spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 shell: Bash command: | npm test From 5fc959b0022315fd1af30fea3acb8adffc587748 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 12:37:34 -0300 Subject: [PATCH 28/50] Git workflows removed --- .github/workflows/test.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 475a3e7..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: test - -on: - pull_request: - branches-ignore: - - none - -jobs: - build-and-test: - name: Build and test - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - version: - - '18.18' - - '22.20' - - '24.10' - steps: - - name: Checkout code - uses: actions/checkout@v5 - - - name: Install Node.js v${{ matrix.version }} - uses: actions/setup-node@v5 - with: - node-version: ${{ matrix.version }} - - - run: npm ci - - run: npm run lint - - run: npm run test From d33d6dd9dfb4f94292df559f79fe480032640676 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 15:51:42 +0000 Subject: [PATCH 29/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index f934ed3..4231400 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -11,7 +11,7 @@ pipeline: build: type: branch spec: - branch: main + branch: <+trigger.branch> variables: - name: nodeVersions type: String From 203123f0a63252a8816c318856c3796a876fc296 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 12:55:33 -0300 Subject: [PATCH 30/50] Step description changed --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 4231400..b66ee57 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -63,7 +63,7 @@ pipeline: timeout: 10m - step: type: Run - name: Lint + name: NPM Lint identifier: run_npm_lint spec: shell: Bash From d27c230cc8042a2702e2b2ea0a6cd5cbd53a6148 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:21:45 +0000 Subject: [PATCH 31/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index b66ee57..37b2b7d 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -11,7 +11,7 @@ pipeline: build: type: branch spec: - branch: <+trigger.branch> + branch: <+input> variables: - name: nodeVersions type: String From b6fd35f1047eab373c7e6b0ffd9ad371e7b6a838 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:33:11 +0000 Subject: [PATCH 32/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index 37b2b7d..85818e7 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,8 +57,12 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | + apt-get update + apt-get install -y nodejs npm npm ci timeout: 10m - step: @@ -66,8 +70,12 @@ pipeline: name: NPM Lint identifier: run_npm_lint spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | + apt-get update + apt-get install -y nodejs npm npm run lint timeout: 10m - step: @@ -75,7 +83,11 @@ pipeline: name: Test identifier: run_npm_test spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | + apt-get update + apt-get install -y nodejs npm npm test timeout: 10m From 268c397955adac836099bffc724d9c306a7b81bc Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:40:52 +0000 Subject: [PATCH 33/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 85818e7..34dbba5 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -58,7 +58,7 @@ pipeline: identifier: run_npm_ci spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: ubuntu:24.04 shell: Bash command: | apt-get update @@ -71,7 +71,7 @@ pipeline: identifier: run_npm_lint spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: ubuntu:24.04 shell: Bash command: | apt-get update @@ -84,7 +84,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: ubuntu:24.04 shell: Bash command: | apt-get update From 3729927d8217c3f54627546c9756939638ac5d17 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:46:40 +0000 Subject: [PATCH 34/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 34dbba5..bd82c5b 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -61,8 +61,6 @@ pipeline: image: ubuntu:24.04 shell: Bash command: | - apt-get update - apt-get install -y nodejs npm npm ci timeout: 10m - step: @@ -74,8 +72,6 @@ pipeline: image: ubuntu:24.04 shell: Bash command: | - apt-get update - apt-get install -y nodejs npm npm run lint timeout: 10m - step: From ad02ce609245e42bc5f79c6d16a4dfa2c72c25c3 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:51:55 +0000 Subject: [PATCH 35/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index bd82c5b..0fdf814 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,8 +57,6 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: - connectorRef: account.harnessImage - image: ubuntu:24.04 shell: Bash command: | npm ci From 3c5fb7e5778b8c23b9f696c1cf0e57763558cf26 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:54:11 +0000 Subject: [PATCH 36/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 0fdf814..f6de830 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -66,8 +66,6 @@ pipeline: name: NPM Lint identifier: run_npm_lint spec: - connectorRef: account.harnessImage - image: ubuntu:24.04 shell: Bash command: | npm run lint From 31cea5b8e943b9ebb4155623f487f118685bc5f6 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 16:58:15 +0000 Subject: [PATCH 37/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index f6de830..21470f8 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -79,7 +79,5 @@ pipeline: image: ubuntu:24.04 shell: Bash command: | - apt-get update - apt-get install -y nodejs npm npm test timeout: 10m From 86a3b6430711285b2482ff6cbae87567f474fec9 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:01:31 +0000 Subject: [PATCH 38/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 21470f8..37b2b7d 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -75,8 +75,6 @@ pipeline: name: Test identifier: run_npm_test spec: - connectorRef: account.harnessImage - image: ubuntu:24.04 shell: Bash command: | npm test From 02dcdcbe19c8291f8451a1828ca3c17fa44b71d5 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:06:54 +0000 Subject: [PATCH 39/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index 37b2b7d..ad41b3f 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -77,5 +77,6 @@ pipeline: spec: shell: Bash command: | + npm ci --cache /tmp/empty-cache npm test timeout: 10m From 745daa0259af822623a3b56a0f7e471d5f86dc50 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:10:03 +0000 Subject: [PATCH 40/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index ad41b3f..6a6c9ee 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -75,6 +75,8 @@ pipeline: name: Test identifier: run_npm_test spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | npm ci --cache /tmp/empty-cache From d86422fa6a3edeb275d3f858be2015c7cb37af30 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:13:24 +0000 Subject: [PATCH 41/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 6a6c9ee..2688bfc 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -79,6 +79,7 @@ pipeline: image: ubuntu:22.04 shell: Bash command: | - npm ci --cache /tmp/empty-cache + apt-get update + apt-get install -y nodejs npm npm test timeout: 10m From 0e0c220069e56fee88d7b6c8224badcd005fe13b Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:16:44 +0000 Subject: [PATCH 42/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 2688bfc..f7e3107 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,6 +57,8 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: + runtime: + type: SameAsPrevious shell: Bash command: | npm ci @@ -66,6 +68,8 @@ pipeline: name: NPM Lint identifier: run_npm_lint spec: + runtime: + type: SameAsPrevious shell: Bash command: | npm run lint @@ -75,11 +79,9 @@ pipeline: name: Test identifier: run_npm_test spec: - connectorRef: account.harnessImage - image: ubuntu:22.04 + runtime: + type: SameAsPrevious shell: Bash command: | - apt-get update - apt-get install -y nodejs npm npm test timeout: 10m From 9ae7b0d83c867b15227612b98dd168efb2e5e6e1 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:17:40 +0000 Subject: [PATCH 43/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index f7e3107..6ee8e65 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,7 +38,7 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: ubuntu:24.04 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" From 2b184db90b3b1415506c203e07037607d0ab9620 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:22:31 +0000 Subject: [PATCH 44/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 6ee8e65..17e0621 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -38,7 +38,7 @@ pipeline: type: Run spec: connectorRef: account.harnessImage - image: ubuntu:24.04 + image: ubuntu:22.04 shell: Bash command: | echo "Installing Node.js version <+matrix.nodeVersion>" @@ -79,9 +79,10 @@ pipeline: name: Test identifier: run_npm_test spec: - runtime: - type: SameAsPrevious + connectorRef: account.harnessImage + image: ubuntu:24.04 shell: Bash command: | + apt-get install -y nodejs npm npm test timeout: 10m From 450a01d02b4625484138968796e1ca1947754a29 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:25:40 +0000 Subject: [PATCH 45/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.harness/test.yaml b/.harness/test.yaml index 17e0621..ed5b25e 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -83,6 +83,7 @@ pipeline: image: ubuntu:24.04 shell: Bash command: | + apt-get update apt-get install -y nodejs npm npm test timeout: 10m From a5961ef192e8e22730850899faf209e5ddcca276 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:29:07 +0000 Subject: [PATCH 46/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index ed5b25e..ef2de5c 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -79,8 +79,6 @@ pipeline: name: Test identifier: run_npm_test spec: - connectorRef: account.harnessImage - image: ubuntu:24.04 shell: Bash command: | apt-get update From 899c8bdbe3bf461eaa81ec226058f3d07f018a21 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:32:34 +0000 Subject: [PATCH 47/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index ef2de5c..2688bfc 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -57,8 +57,6 @@ pipeline: name: Install NPM Dependencies identifier: run_npm_ci spec: - runtime: - type: SameAsPrevious shell: Bash command: | npm ci @@ -68,8 +66,6 @@ pipeline: name: NPM Lint identifier: run_npm_lint spec: - runtime: - type: SameAsPrevious shell: Bash command: | npm run lint @@ -79,6 +75,8 @@ pipeline: name: Test identifier: run_npm_test spec: + connectorRef: account.harnessImage + image: ubuntu:22.04 shell: Bash command: | apt-get update From 9ef4e5835bbce0f616580b9e12354d484aa7b4f6 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 17:36:47 +0000 Subject: [PATCH 48/50] Update pipeline FME-split-evaluator --- .harness/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.harness/test.yaml b/.harness/test.yaml index 2688bfc..f6de830 100644 --- a/.harness/test.yaml +++ b/.harness/test.yaml @@ -76,7 +76,7 @@ pipeline: identifier: run_npm_test spec: connectorRef: account.harnessImage - image: ubuntu:22.04 + image: ubuntu:24.04 shell: Bash command: | apt-get update From fc1e6ceb171544ff987c08818965f33dbef638b7 Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 19:05:04 +0000 Subject: [PATCH 49/50] Update inputset DefaultInput --- .../FMEsplitevaluator/input_sets/Default.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml b/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml index 91eacc6..270b462 100644 --- a/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml +++ b/.harness/orgs/PROD/projects/Harness_Split/pipelines/FMEsplitevaluator/input_sets/Default.yaml @@ -1,16 +1,15 @@ inputSet: + name: DefaultInput + tags: {} + identifier: Default + orgIdentifier: PROD + projectIdentifier: Harness_Split pipeline: identifier: FMEsplitevaluator properties: ci: codebase: - connectorRef: splitio - repoName: split-evaluator build: + type: branch spec: branch: <+input> - type: branch - name: Default - identifier: Default - orgIdentifier: PROD - projectIdentifier: Harness_Split From 9c1baede895a5e594a4d79df3e13372f1e1ec6fe Mon Sep 17 00:00:00 2001 From: Martin Cardozo Date: Fri, 6 Feb 2026 18:42:45 -0300 Subject: [PATCH 50/50] Delete .github/workflows directory --- .github/workflows/update-license-year.yml | 45 ----------------------- 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/update-license-year.yml diff --git a/.github/workflows/update-license-year.yml b/.github/workflows/update-license-year.yml deleted file mode 100644 index 2cc58da..0000000 --- a/.github/workflows/update-license-year.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Update License Year - -on: - schedule: - - cron: "0 3 1 1 *" # 03:00 AM on January 1 - -permissions: - contents: write - pull-requests: write - -jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v5 - with: - fetch-depth: 0 - - - name: Set Current year - run: "echo CURRENT=$(date +%Y) >> $GITHUB_ENV" - - - name: Set Previous Year - run: "echo PREVIOUS=$(($CURRENT-1)) >> $GITHUB_ENV" - - - name: Update LICENSE - uses: jacobtomlinson/gha-find-replace@v3 - with: - find: ${{ env.PREVIOUS }} - replace: ${{ env.CURRENT }} - include: "LICENSE" - regex: false - - - name: Commit files - run: | - git config user.name 'github-actions[bot]' - git config user.email 'github-actions[bot]@users.noreply.github.com' - git commit -m "Updated License Year" -a - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v8 - with: - token: ${{ secrets.GITHUB_TOKEN }} - title: Update License Year - branch: update-license