From fc9942c25b3b17bd03929ed2bdc737499aef201c Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 11:25:04 +0530 Subject: [PATCH 01/18] Update trivyimagescan.yaml --- .github/workflows/trivyimagescan.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trivyimagescan.yaml b/.github/workflows/trivyimagescan.yaml index 0c99653f..9bc41e59 100644 --- a/.github/workflows/trivyimagescan.yaml +++ b/.github/workflows/trivyimagescan.yaml @@ -40,11 +40,18 @@ jobs: echo "running make build benchmark" make build env: - REGISTRY: "false" + REGISTRY: "false" + + - name: Extract PIPELINE_RUNNER_IMAGE from Makefile + id: extract_image + run: | + IMAGE=$(grep ^PIPELINE_RUNNER_IMAGE Makefile | head -n 1 | cut -d '=' -f2 | xargs) + echo "PIPELINE_RUNNER_IMAGE=$IMAGE" >> $GITHUB_OUTPUT + - name: Run Trivy vulnerability scanner uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 with: - image-ref: 'pipeline-runner-asc:3.6.2' + image-ref: '${{ steps.extract_image.outputs.PIPELINE_RUNNER_IMAGE }}' format: 'table' severity: 'CRITICAL,HIGH' output: 'trivy-asc-results.txt' From 9a41c541f45f727be645c4059f3f7ea548b1391f Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 12:40:53 +0530 Subject: [PATCH 02/18] Create VERSION --- VERSION | 1 + 1 file changed, 1 insertion(+) create mode 100644 VERSION diff --git a/VERSION b/VERSION new file mode 100644 index 00000000..a0f9a4b4 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +latest From 813b95658f6159a29d22198978f29f63c1d8b0cb Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 15:38:00 +0530 Subject: [PATCH 03/18] Update Makefile --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 18bde03b..8571559b 100644 --- a/Makefile +++ b/Makefile @@ -24,17 +24,17 @@ RESULTS_DIR ?= $(PWD)/benchmark -TAG ?= rc2 +TAG ?= $(shell cat VERSION) #local image references -MODELDOWNLOADER_IMAGE ?= model-downloader-asc:3.6.2 -PIPELINE_RUNNER_IMAGE ?= pipeline-runner-asc:3.6.2 +MODELDOWNLOADER_IMAGE ?= model-downloader-asc:$(TAG) +PIPELINE_RUNNER_IMAGE ?= pipeline-runner-asc:$(TAG) BENCHMARK_IMAGE ?= benchmark:latest REGISTRY ?= true # Registry image references -REGISTRY_MODEL_DOWNLOADER ?= intel/model-downloader-asc:3.6.2 -REGISTRY_PIPELINE_RUNNER ?= intel/pipeline-runner-asc:3.6.2 +REGISTRY_MODEL_DOWNLOADER ?= intel/model-downloader-asc:$(TAG) +REGISTRY_PIPELINE_RUNNER ?= intel/pipeline-runner-asc:$(TAG) REGISTRY_BENCHMARK ?= intel/retail-benchmark:3.3.1 download-models: check-models-needed From 8e65f2f9627b5429876ece46778c0932f8e39416 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 15:39:08 +0530 Subject: [PATCH 04/18] Update VERSION --- VERSION | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a0f9a4b4..b8c94170 100644 --- a/VERSION +++ b/VERSION @@ -1 +1,2 @@ -latest +ASC=latest +PT=latest From ca00f16063986092589434097a7840fd62f425c8 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 15:45:29 +0530 Subject: [PATCH 05/18] Update Makefile --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 8571559b..e8f3c07f 100644 --- a/Makefile +++ b/Makefile @@ -24,18 +24,19 @@ RESULTS_DIR ?= $(PWD)/benchmark -TAG ?= $(shell cat VERSION) +ASC_TAG := $(shell grep '^ASC=' VERSION | cut -d= -f2) +PT_TAG := $(shell grep '^PT=' VERSION | cut -d= -f2) #local image references -MODELDOWNLOADER_IMAGE ?= model-downloader-asc:$(TAG) -PIPELINE_RUNNER_IMAGE ?= pipeline-runner-asc:$(TAG) -BENCHMARK_IMAGE ?= benchmark:latest +MODELDOWNLOADER_IMAGE ?= model-downloader-asc:$(ASC_TAG) +PIPELINE_RUNNER_IMAGE ?= pipeline-runner-asc:$(ASC_TAG) +BENCHMARK_IMAGE ?= benchmark:$(PT_TAG) REGISTRY ?= true # Registry image references -REGISTRY_MODEL_DOWNLOADER ?= intel/model-downloader-asc:$(TAG) -REGISTRY_PIPELINE_RUNNER ?= intel/pipeline-runner-asc:$(TAG) -REGISTRY_BENCHMARK ?= intel/retail-benchmark:3.3.1 +REGISTRY_MODEL_DOWNLOADER ?= intel/model-downloader-asc:$(ASC_TAG) +REGISTRY_PIPELINE_RUNNER ?= intel/pipeline-runner-asc:$(ASC_TAG) +REGISTRY_BENCHMARK ?= intel/retail-benchmark:$(PT_TAG) download-models: check-models-needed From 9639a0cc8e81772d48ca9a6746c5a377c59d0167 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 15:49:00 +0530 Subject: [PATCH 06/18] Update trivyimagescan.yaml --- .github/workflows/trivyimagescan.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/trivyimagescan.yaml b/.github/workflows/trivyimagescan.yaml index 9bc41e59..904379ad 100644 --- a/.github/workflows/trivyimagescan.yaml +++ b/.github/workflows/trivyimagescan.yaml @@ -42,16 +42,16 @@ jobs: env: REGISTRY: "false" - - name: Extract PIPELINE_RUNNER_IMAGE from Makefile - id: extract_image + - name: Extract ASC value from VERSION file + id: extract_asc run: | - IMAGE=$(grep ^PIPELINE_RUNNER_IMAGE Makefile | head -n 1 | cut -d '=' -f2 | xargs) - echo "PIPELINE_RUNNER_IMAGE=$IMAGE" >> $GITHUB_OUTPUT + ASC_TAG=$(grep '^ASC=' VERSION | cut -d= -f2) + echo "ASC_TAG=$ASC_TAG" >> $GITHUB_OUTPUT - name: Run Trivy vulnerability scanner uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 with: - image-ref: '${{ steps.extract_image.outputs.PIPELINE_RUNNER_IMAGE }}' + image-ref: 'pipeline-runner-asc:${{ steps.extract_image.outputs.ASC_TAG}}' format: 'table' severity: 'CRITICAL,HIGH' output: 'trivy-asc-results.txt' From 0eb9fc5aaf0a50ed1d5a3af67910f6fb31b2ff1d Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 16:15:39 +0530 Subject: [PATCH 07/18] Update trivyimagescan.yaml --- .github/workflows/trivyimagescan.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trivyimagescan.yaml b/.github/workflows/trivyimagescan.yaml index 904379ad..a3a9c001 100644 --- a/.github/workflows/trivyimagescan.yaml +++ b/.github/workflows/trivyimagescan.yaml @@ -51,7 +51,7 @@ jobs: - name: Run Trivy vulnerability scanner uses: aquasecurity/trivy-action@915b19bbe73b92a6cf82a1bc12b087c9a19a5fe2 with: - image-ref: 'pipeline-runner-asc:${{ steps.extract_image.outputs.ASC_TAG}}' + image-ref: 'pipeline-runner-asc:${{ steps.extract_asc.outputs.ASC_TAG}}' format: 'table' severity: 'CRITICAL,HIGH' output: 'trivy-asc-results.txt' From 8eb81d2e88c6a0ba74c2703ab1b7d7bff8c86117 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 16:21:01 +0530 Subject: [PATCH 08/18] Update trivyimagescan.yaml --- .github/workflows/trivyimagescan.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/trivyimagescan.yaml b/.github/workflows/trivyimagescan.yaml index a3a9c001..7a5d3560 100644 --- a/.github/workflows/trivyimagescan.yaml +++ b/.github/workflows/trivyimagescan.yaml @@ -45,6 +45,8 @@ jobs: - name: Extract ASC value from VERSION file id: extract_asc run: | + pwd + ls -ltra ASC_TAG=$(grep '^ASC=' VERSION | cut -d= -f2) echo "ASC_TAG=$ASC_TAG" >> $GITHUB_OUTPUT From 6dc4f51dfca155502a29cfb0a0fc0a193d7a9450 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 16:27:48 +0530 Subject: [PATCH 09/18] Update trivyimagescan.yaml --- .github/workflows/trivyimagescan.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trivyimagescan.yaml b/.github/workflows/trivyimagescan.yaml index 7a5d3560..b7a2adac 100644 --- a/.github/workflows/trivyimagescan.yaml +++ b/.github/workflows/trivyimagescan.yaml @@ -29,7 +29,8 @@ jobs: if: github.event_name == 'pull_request' uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 with: - ref: ${{ github.head_ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} + ref: ${{ github.event.pull_request.head.ref }} - name: Checkout code for Push Request if: github.event_name == 'push' uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 From b73fa904d6f2cb9b9c4eaf9bec5fb731a2eefb00 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 16:30:58 +0530 Subject: [PATCH 10/18] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index b8c94170..486bdc3e 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -ASC=latest +ASC=3.6.2 PT=latest From b6847008ca47102465067c1bf91100e9aded1416 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 16:35:16 +0530 Subject: [PATCH 11/18] Update build.yaml --- .github/workflows/build.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bae05631..e007d765 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,3 +19,5 @@ jobs: - name: Make dlstreamer Docker image run: | make build + env: + REGISTRY: "false" From 43d1b44b1a25e6984e4b1d34c3f26bb0cf40b4c0 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Tue, 9 Dec 2025 17:49:07 +0530 Subject: [PATCH 12/18] Update build.yaml --- .github/workflows/build.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e007d765..a488e2bb 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,7 +16,12 @@ jobs: steps: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - - name: Make dlstreamer Docker image + - name: Make Model Downloader Pipeline Docker image + run: | + make build-download-models + env: + REGISTRY: "false" + - name: Make ASC Pipeline Docker image run: | make build env: From a0ba7a6422c27fede80c4d18b1527f04d43bf0cf Mon Sep 17 00:00:00 2001 From: sumanaga Date: Wed, 10 Dec 2025 09:20:49 +0530 Subject: [PATCH 13/18] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 486bdc3e..b8c94170 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -ASC=3.6.2 +ASC=latest PT=latest From aec699d040d2c8a3759386b69793edddc54eba4a Mon Sep 17 00:00:00 2001 From: sumanaga Date: Thu, 11 Dec 2025 09:44:03 +0530 Subject: [PATCH 14/18] Update Makefile --- Makefile | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/Makefile b/Makefile index e8f3c07f..028192d5 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,8 @@ RESULTS_DIR ?= $(PWD)/benchmark -ASC_TAG := $(shell grep '^ASC=' VERSION | cut -d= -f2) -PT_TAG := $(shell grep '^PT=' VERSION | cut -d= -f2) +ASC_TAG := $(shell cat VERSION) +PT_TAG := $(shell cat performance-tools/VERSION) #local image references MODELDOWNLOADER_IMAGE ?= model-downloader-asc:$(ASC_TAG) @@ -104,21 +104,21 @@ build-pipeline-server: | download-models update-submodules download-sample-video docker build --build-arg HTTPS_PROXY=${HTTPS_PROXY} --build-arg HTTP_PROXY=${HTTP_PROXY} -t dlstreamer:pipeline-server -f src/pipeline-server/Dockerfile.pipeline-server src/pipeline-server build-sensors: - docker compose -f src/${DOCKER_COMPOSE_SENSORS} build --build-arg HTTPS_PROXY=${HTTPS_PROXY} --build-arg HTTP_PROXY=${HTTP_PROXY} + ASC_TAG=$(ASC_TAG) docker compose -f src/${DOCKER_COMPOSE_SENSORS} build --build-arg HTTPS_PROXY=${HTTPS_PROXY} --build-arg HTTP_PROXY=${HTTP_PROXY} run: @if [ "$(REGISTRY)" = "true" ]; then \ echo "Running registry version..."; \ echo "############### Running registry mode ###############################"; \ - docker compose -f src/$(DOCKER_COMPOSE_REGISTRY) up -d; \ + ASC_TAG=$(ASC_TAG) docker compose -f src/$(DOCKER_COMPOSE_REGISTRY) up -d; \ else \ echo "Running standard version..."; \ echo "############### Running STANDARD mode ###############################"; \ - docker compose -f src/$(DOCKER_COMPOSE) up -d; \ + ASC_TAG=$(ASC_TAG) docker compose -f src/$(DOCKER_COMPOSE) up -d; \ fi run-sensors: - docker compose -f src/${DOCKER_COMPOSE_SENSORS} up -d + ASC_TAG=$(ASC_TAG) docker compose -f src/${DOCKER_COMPOSE_SENSORS} up -d run-render-mode: @@ -133,23 +133,23 @@ run-render-mode: @xhost +local:docker @if [ "$(REGISTRY)" = "true" ]; then \ echo "Running registry version with render mode..."; \ - RENDER_MODE=1 docker compose -f src/$(DOCKER_COMPOSE_REGISTRY) up -d; \ + ASC_TAG=$(ASC_TAG) RENDER_MODE=1 docker compose -f src/$(DOCKER_COMPOSE_REGISTRY) up -d; \ else \ echo "Running standard version with render mode..."; \ - RENDER_MODE=1 docker compose -f src/$(DOCKER_COMPOSE) up -d; \ + ASC_TAG=$(ASC_TAG) RENDER_MODE=1 docker compose -f src/$(DOCKER_COMPOSE) up -d; \ fi down: @if [ "$(REGISTRY)" = "true" ]; then \ echo "Stopping registry demo containers..."; \ - docker compose -f src/$(DOCKER_COMPOSE_REGISTRY) down; \ + ASC_TAG=$(ASC_TAG) docker compose -f src/$(DOCKER_COMPOSE_REGISTRY) down; \ echo "Registry demo containers stopped and removed."; \ else \ - docker compose -f src/$(DOCKER_COMPOSE) down; \ + ASC_TAG=$(ASC_TAG) docker compose -f src/$(DOCKER_COMPOSE) down; \ fi down-sensors: - docker compose -f src/${DOCKER_COMPOSE_SENSORS} down + ASC_TAG=$(ASC_TAG) docker compose -f src/${DOCKER_COMPOSE_SENSORS} down run-demo: | download-models update-submodules download-sample-videos @echo "Building automated self checkout app" @@ -168,10 +168,10 @@ run-headless: | download-models update-submodules download-sample-videos $(MAKE) run run-pipeline-server: | download-models update-submodules download-sample-videos - RETAIL_USE_CASE_ROOT=$(RETAIL_USE_CASE_ROOT) docker compose -f src/pipeline-server/docker-compose.pipeline-server.yml up -d + ASC_TAG=$(ASC_TAG) RETAIL_USE_CASE_ROOT=$(RETAIL_USE_CASE_ROOT) docker compose -f src/pipeline-server/docker-compose.pipeline-server.yml up -d down-pipeline-server: - docker compose -f src/pipeline-server/docker-compose.pipeline-server.yml down + ASC_TAG=$(ASC_TAG) docker compose -f src/pipeline-server/docker-compose.pipeline-server.yml down fetch-benchmark: @echo "Fetching benchmark image from registry..." @@ -186,7 +186,7 @@ build-benchmark: else \ echo "Building pipeline-runner-asc img locally..."; \ docker build --build-arg HTTPS_PROXY=${HTTPS_PROXY} --build-arg HTTP_PROXY=${HTTP_PROXY} --target build-default -t $(PIPELINE_RUNNER_IMAGE) -f src/Dockerfile src/; \ - cd performance-tools && $(MAKE) build-benchmark-docker; \ + cd performance-tools && PT_TAG=$(PT_TAG) $(MAKE) build-benchmark-docker; \ fi benchmark: build-benchmark download-models download-sample-videos @@ -195,9 +195,9 @@ benchmark: build-benchmark download-models download-sample-videos . venv/bin/activate && \ pip install -r requirements.txt && \ if [ "$(REGISTRY)" = "true" ]; then \ - python benchmark.py --compose_file ../../src/$(DOCKER_COMPOSE_REGISTRY) --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR) --benchmark_type reg; \ + ASC_TAG=$(ASC_TAG) PT_TAG=$(PT_TAG) python benchmark.py --compose_file ../../src/$(DOCKER_COMPOSE_REGISTRY) --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR) --benchmark_type reg; \ else \ - python benchmark.py --compose_file ../../src/$(DOCKER_COMPOSE) --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR); \ + ASC_TAG=$(ASC_TAG) PT_TAG=$(PT_TAG) python benchmark.py --compose_file ../../src/$(DOCKER_COMPOSE) --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR); \ fi && \ deactivate @@ -227,7 +227,7 @@ benchmark-stream-density: build-benchmark download-models . venv/bin/activate && \ pip install -r requirements.txt && \ if [ "$(REGISTRY)" = "true" ]; then \ - python3 benchmark.py \ + ASC_TAG=$(ASC_TAG) PT_TAG=$(PT_TAG) python3 benchmark.py \ --compose_file ../../src/$(DOCKER_COMPOSE_REGISTRY) \ --init_duration $(INIT_DURATION) \ --target_fps $(TARGET_FPS) \ @@ -236,7 +236,7 @@ benchmark-stream-density: build-benchmark download-models --benchmark_type reg \ --results_dir $(RESULTS_DIR); \ else \ - python3 benchmark.py \ + ASC_TAG=$(ASC_TAG) PT_TAG=$(PT_TAG) python3 benchmark.py \ --compose_file ../../src/$(DOCKER_COMPOSE) \ --init_duration $(INIT_DURATION) \ --target_fps $(TARGET_FPS) \ @@ -253,10 +253,10 @@ benchmark-quickstart: build-benchmark download-models download-sample-videos pip install -r requirements.txt && \ if [ "$(REGISTRY)" = "true" ]; then \ DEVICE_ENV=res/all-gpu.env RENDER_MODE=0 PIPELINE_SCRIPT=obj_detection_age_prediction.sh \ - python benchmark.py --compose_file ../../src/docker-compose.yml --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR) --benchmark_type reg; \ + ASC_TAG=$(ASC_TAG) PT_TAG=$(PT_TAG) python benchmark.py --compose_file ../../src/docker-compose.yml --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR) --benchmark_type reg; \ else \ DEVICE_ENV=res/all-gpu.env RENDER_MODE=0 PIPELINE_SCRIPT=obj_detection_age_prediction.sh \ - python benchmark.py --compose_file ../../src/docker-compose.yml --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR); \ + ASC_TAG=$(ASC_TAG) PT_TAG=$(PT_TAG) python benchmark.py --compose_file ../../src/docker-compose.yml --pipeline $(PIPELINE_COUNT) --results_dir $(RESULTS_DIR); \ fi && \ deactivate $(MAKE) consolidate-metrics From 4ce97313f0109e8b19c602a0b5e63c06c70ad2f1 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Thu, 11 Dec 2025 09:44:37 +0530 Subject: [PATCH 15/18] Update docker-compose-reg.yml --- src/docker-compose-reg.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docker-compose-reg.yml b/src/docker-compose-reg.yml index 115b85fc..63f2b8bb 100644 --- a/src/docker-compose-reg.yml +++ b/src/docker-compose-reg.yml @@ -26,7 +26,7 @@ services: - ./start_stream.sh:/home/pipeline-server/src/start_stream.sh ClientGst: - image: intel/pipeline-runner-asc:3.6.2 + image: intel/pipeline-runner-asc:${ASC_TAG} deploy: mode: replicated replicas: ${PIPELINE_COUNT:-1} From 29a6311187098d3c41bad300367866b5f7588e53 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Thu, 11 Dec 2025 09:45:11 +0530 Subject: [PATCH 16/18] Update docker-compose.yml --- src/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docker-compose.yml b/src/docker-compose.yml index 1040fdb1..febfaa5a 100644 --- a/src/docker-compose.yml +++ b/src/docker-compose.yml @@ -26,7 +26,7 @@ services: - ./start_stream.sh:/home/pipeline-server/src/start_stream.sh ClientGst: - image: pipeline-runner-asc:3.6.2 + image: pipeline-runner-asc:${ASC_TAG} deploy: mode: replicated replicas: ${PIPELINE_COUNT:-1} @@ -56,4 +56,4 @@ services: - ./pipelines:/home/pipeline-server/pipelines - ./extensions:/home/pipeline-server/extensions - ${RETAIL_USE_CASE_ROOT:-}/models:/home/pipeline-server/models - restart: on-failure \ No newline at end of file + restart: on-failure From 9e06962d0799b65c7075a858f32dfadfbae089f3 Mon Sep 17 00:00:00 2001 From: sumanaga Date: Thu, 11 Dec 2025 10:11:42 +0530 Subject: [PATCH 17/18] Update VERSION --- VERSION | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/VERSION b/VERSION index b8c94170..0b2eb36f 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1 @@ -ASC=latest -PT=latest +3.7.2 From 9aaece81dfb37c407718e18bbf45094b8b594b5d Mon Sep 17 00:00:00 2001 From: sumanaga Date: Fri, 12 Dec 2025 10:27:41 +0530 Subject: [PATCH 18/18] Update check_models.sh --- check_models.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_models.sh b/check_models.sh index 87e5aa66..03175e33 100755 --- a/check_models.sh +++ b/check_models.sh @@ -1,7 +1,7 @@ #!/bin/bash # filepath: /home/intel/suryam/ASC/suryam789/automated-self-checkout/check_models.sh -set -eo pipefail +set -o pipefail echo "Checking for models required by pipeline script..." @@ -172,4 +172,4 @@ fi # else # echo "Insufficient models ($XML_COUNT < 12). Need to download." # exit 0 # Need to download -# fi \ No newline at end of file +# fi