Users/shivshar/documentation update 2 #3
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |