Users/shivshar/documentation update 2 #38
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 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: Log in to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ secrets.GHCR_UNAME }} | |
| password: ${{ secrets.GHCR_PAT }} | |
| - name: Pull LabVIEW container image | |
| run: docker pull ghcr.io/shivacode-2/labview:2026q1-linux-beta | |
| - name: Run LabVIEWCLI MassCompile on Arrays | |
| run: | | |
| docker run --rm \ | |
| ghcr.io/shivacode-2/labview:2026q1-linux-beta \ | |
| 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" \ | |
| ghcr.io/shivacode-2/labview:2026q1-linux-beta \ | |
| bash -c "cd /workspace/examples/integration-into-cicd && chmod +x runlabview.sh && ./runlabview.sh" | |