Skip to content

Users/shivshar/documentation update 2 #3

Users/shivshar/documentation update 2

Users/shivshar/documentation update 2 #3

name: Run LabVIEWCLI on Windows Container
on:
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
run-labview-cli-windows:
# This job requires a runner with Docker configured for Windows containers.
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Pull Docker Image from Docker Hub
run: docker pull nationalinstruments/labview:2026q1-windows-beta
- name: Run LabVIEWCLI MassCompile in Windows container
run: >
docker run --rm
nationalinstruments/labview:2026q1-windows-beta
LabVIEWCLI -OperationName MassCompile -DirectoryToCompile
"C:\Program Files\National Instruments\LabVIEW 2026\examples\Arrays" -Headless
- name: Run CI integration script in Windows container
run: >
docker run --rm
-v "${{ github.workspace }}:C:\workspace"
nationalinstruments/labview:2026q1-windows-beta
powershell -File "C:\workspace\examples\integration-into-cicd\runlabview.ps1" -WorkspaceRoot "C:\workspace"