From a22cd17dfc65a9aaed239ff6c26b5473cb7d4c59 Mon Sep 17 00:00:00 2001 From: shivaCode-2 <141118860+shivaCode-2@users.noreply.github.com> Date: Mon, 3 Nov 2025 18:15:49 +0530 Subject: [PATCH 1/5] Update runlabview.sh --- runlabview.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/runlabview.sh b/runlabview.sh index 1144094..a102e61 100644 --- a/runlabview.sh +++ b/runlabview.sh @@ -1,4 +1,5 @@ #!/bin/bash +# Testing Change CONFIG_FILE='/workspace/Test-VIs/viaPassCase.viancfg' LABVIEW_PATH='/usr/local/natinst/LabVIEW-2025-64/labviewprofull' REPORT_PATH='/usr/local/natinst/ContainerExamples/Results.txt' From 4113f5832c5b3b17b52a339d3d77ad2edf2a254c Mon Sep 17 00:00:00 2001 From: shivaCode-2 <141118860+shivaCode-2@users.noreply.github.com> Date: Mon, 3 Nov 2025 18:40:18 +0530 Subject: [PATCH 2/5] Update vi-analyzer-container.yml --- .github/workflows/vi-analyzer-container.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vi-analyzer-container.yml b/.github/workflows/vi-analyzer-container.yml index 7c1e7f4..1914002 100644 --- a/.github/workflows/vi-analyzer-container.yml +++ b/.github/workflows/vi-analyzer-container.yml @@ -23,12 +23,12 @@ jobs: password: ${{ secrets.GHCR_PAT }} - name: Pull Docker Image from Docker Hub - run: docker pull ghcr.io/shivacode-2/labview:2025q3-linux-beta + run: docker pull nationalinstruments/labview:2025q3-linux - name: Run LabVIEWCLI Operations run: | docker run --rm \ -v "${{ github.workspace }}:/workspace" \ - ghcr.io/shivacode-2/labview:2025q3-linux-beta \ + nationalinstruments/labview:2025q3-linux \ bash -c "cd /workspace && chmod +x runlabview.sh && ./runlabview.sh" From 703b5554877de2e482161b03d9fb8832967de9ee Mon Sep 17 00:00:00 2001 From: shivaCode-2 <141118860+shivaCode-2@users.noreply.github.com> Date: Mon, 3 Nov 2025 18:49:27 +0530 Subject: [PATCH 3/5] Update vi-analyzer-container.yml --- .github/workflows/vi-analyzer-container.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vi-analyzer-container.yml b/.github/workflows/vi-analyzer-container.yml index 1914002..769c03b 100644 --- a/.github/workflows/vi-analyzer-container.yml +++ b/.github/workflows/vi-analyzer-container.yml @@ -23,12 +23,12 @@ jobs: password: ${{ secrets.GHCR_PAT }} - name: Pull Docker Image from Docker Hub - run: docker pull nationalinstruments/labview:2025q3-linux + run: docker pull nationalinstruments/labview:latest-linux - name: Run LabVIEWCLI Operations run: | docker run --rm \ -v "${{ github.workspace }}:/workspace" \ - nationalinstruments/labview:2025q3-linux \ + nationalinstruments/labview:latest-linux \ bash -c "cd /workspace && chmod +x runlabview.sh && ./runlabview.sh" From d1c9a3d8be77ac710e1598e81d79097de60ef523 Mon Sep 17 00:00:00 2001 From: shivaCode-2 <141118860+shivaCode-2@users.noreply.github.com> Date: Mon, 3 Nov 2025 18:55:07 +0530 Subject: [PATCH 4/5] Update vi-analyzer-container.yml --- .github/workflows/vi-analyzer-container.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vi-analyzer-container.yml b/.github/workflows/vi-analyzer-container.yml index 769c03b..119dedc 100644 --- a/.github/workflows/vi-analyzer-container.yml +++ b/.github/workflows/vi-analyzer-container.yml @@ -23,12 +23,12 @@ jobs: password: ${{ secrets.GHCR_PAT }} - name: Pull Docker Image from Docker Hub - run: docker pull nationalinstruments/labview:latest-linux + run: docker pull nationalinstruments/labview:2025q3patch1-linux - name: Run LabVIEWCLI Operations run: | docker run --rm \ -v "${{ github.workspace }}:/workspace" \ - nationalinstruments/labview:latest-linux \ + nationalinstruments/labview:2025q3patch1-linux \ bash -c "cd /workspace && chmod +x runlabview.sh && ./runlabview.sh" From 7b99cf9e64d5bf3c059ddae4f223d0e9a7a8745e Mon Sep 17 00:00:00 2001 From: shivaCode-2 <141118860+shivaCode-2@users.noreply.github.com> Date: Mon, 3 Nov 2025 21:56:33 +0530 Subject: [PATCH 5/5] Update runlabview.sh --- runlabview.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/runlabview.sh b/runlabview.sh index a102e61..2392097 100644 --- a/runlabview.sh +++ b/runlabview.sh @@ -15,18 +15,16 @@ fi echo "Running LabVIEWCLI MassCompile with following parameters:" echo "DirectorytoCompile: $MASSCOMPILE_DIR" -OUTPUT_MASSCOMPILE=$(LabVIEWCLI -LogToConsole TRUE \ +LabVIEWCLI -LogToConsole TRUE \ -OperationName MassCompile \ -DirectoryToCompile $MASSCOMPILE_DIR \ --LabVIEWPath $LABVIEW_PATH) +-LabVIEWPath $LABVIEW_PATH echo " " echo "Done Running Masscompile Operation" echo "Printing Results..." echo " " echo "########################################################################################" -echo $OUTPUT_MASSCOMPILE -echo "########################################################################################" echo " " echo "Running LabVIEWCLI VIAnalyzer with the following parameters:" @@ -35,11 +33,11 @@ echo "ReportPath: $REPORT_PATH" echo " " # Run the LabVIEWCLI VIA command. -OUTPUT=$(LabVIEWCLI -LogToConsole TRUE \ +LabVIEWCLI -LogToConsole TRUE \ -OperationName RunVIAnalyzer \ -ConfigPath $CONFIG_FILE \ -ReportPath $REPORT_PATH \ --LabVIEWPath $LABVIEW_PATH) +-LabVIEWPath $LABVIEW_PATH echo "Done running of VI Analyzer Tests" echo "Printing Results..."