Skip to content

Commit

Permalink
Update test-and-build-icon-editor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
svelderrainruiz committed Dec 20, 2024
1 parent 772c11d commit c7d2b92
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/test-and-build-icon-editor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:

- name: Clean Up Old .lvlibp Files
shell: powershell
working-directory: ${{ env.RELATIVE_PATH }}
run: |
$PluginsPath = "${{ env.RELATIVE_PATH }}\resource\plugins"
Write-Host "Cleaning up .lvlibp files in $PluginsPath..."
Expand All @@ -32,19 +31,16 @@ jobs:
- name: Set agent into development mode
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\Set_Development_Mode.ps1" -RelativePath "${{ env.RELATIVE_PATH }}"
- name: Apply Dependencies 2021 (32-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\Applyvipc.ps1" -MinimumSupportedLVVersion 2021 -SupportedBitness 32 -RelativePath "${{ env.RELATIVE_PATH }}" -VIPCPath "Tooling\deployment\Dependencies.vipc" -VIP_LVVersion 2021
- name: Run Unit Tests 2021 (32-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\RunUnitTests.ps1" -MinimumSupportedLVVersion 2021 -SupportedBitness 32 -RelativePath "${{ env.RELATIVE_PATH }}"
Expand All @@ -56,44 +52,37 @@ jobs:
- name: Rename File After Build 2021 (32-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
$CurrentFile = "${{ env.RELATIVE_PATH }}\resource\plugins\lv_icon.lvlibp"
& ".\Rename-File.ps1" -CurrentFilename $CurrentFile -NewFilename "lv_icon_x86.lvlibp"
- name: Apply Dependencies 2021 (64-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\Applyvipc.ps1" -MinimumSupportedLVVersion 2021 -SupportedBitness 64 -RelativePath "${{ env.RELATIVE_PATH }}" -VIPCPath "Tooling\deployment\Dependencies.vipc" -VIP_LVVersion 2021
- name: Run Unit Tests 2021 (64-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\RunUnitTests.ps1" -MinimumSupportedLVVersion 2021 -SupportedBitness 64 -RelativePath "${{ env.RELATIVE_PATH }}"
- name: Build LV Library 2021 (64-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\Build_lvlibp.ps1" -MinimumSupportedLVVersion 2021 -SupportedBitness 64 -RelativePath "${{ env.RELATIVE_PATH }}"
- name: Rename File After Build 2021 (64-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
$CurrentFile = "${{ env.RELATIVE_PATH }}\resource\plugins\lv_icon.lvlibp"
& ".\Rename-File.ps1" -CurrentFilename $CurrentFile -NewFilename "lv_icon_x64.lvlibp"
- name: Build VI Package 2021 (64-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\build_vip.ps1" -SupportedBitness 64 -RelativePath "${{ env.RELATIVE_PATH }}" -VIPBPath "Tooling\deployment\NI Icon editor.vipb" -VIP_LVVersion 2021 -MinimumSupportedLVVersion 2021
- name: Close LabVIEW 2021 (64-bit)
shell: powershell
working-directory: ${{ env.SCRIPTS_PATH }}
run: |
& ".\Close_LabVIEW.ps1" -MinimumSupportedLVVersion 2021 -SupportedBitness 64

0 comments on commit c7d2b92

Please sign in to comment.