mirror to gitlab fix #6
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: MassCompile - Windows Container | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| masscompile-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Pull LabVIEW container image | |
| run: docker pull nationalinstruments/labview:latest-windows | |
| - name: Run LabVIEWCLI MassCompile | |
| run: > | |
| docker run --rm | |
| -v "${{ github.workspace }}:C:\workspace" | |
| nationalinstruments/labview:latest-windows | |
| LabVIEWCLI -LogToConsole TRUE -OperationName MassCompile | |
| -DirectoryToCompile "C:\workspace\examples\cicd-examples\Test-VIs" -Headless |