Update NI feed format in windows-custom-images.md #53
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 Linux Container | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| run-labview-cli: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Pull LabVIEW container image | |
| run: docker pull nationalinstruments/labview:latest-linux | |
| - name: Run LabVIEWCLI MassCompile on Arrays | |
| run: | | |
| docker run --rm \ | |
| nationalinstruments/labview:latest-linux \ | |
| bash -c "LabVIEWCLI -OperationName MassCompile -DirectoryToCompile /usr/local/natinst/LabVIEW-2026-64/examples/Arrays -LabVIEWPath /usr/local/natinst/LabVIEW-2026-64/labview -Headless" | |
| - name: Run CI integration script in container | |
| run: | | |
| docker run --rm \ | |
| -v "${{ github.workspace }}:/workspace" \ | |
| nationalinstruments/labview:latest-linux \ | |
| bash -c "cd /workspace/examples/integration-into-cicd && chmod +x runlabview.sh && ./runlabview.sh" | |