]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
ci: disable installing netbeans on Windows runners
authorChristian Brabandt <cb@256bit.org>
Sun, 29 Jun 2025 15:56:44 +0000 (17:56 +0200)
committerChristian Brabandt <cb@256bit.org>
Sun, 29 Jun 2025 15:57:00 +0000 (17:57 +0200)
It causes CI to fail because the netbeans package has been moved

related: tunisiano187/Chocolatey-packages#3916
related: #17631

Signed-off-by: Christian Brabandt <cb@256bit.org>
.github/workflows/ci.yml

index 5c9446bb8d6dd3debc6072420b95516a5457934a..505efe9aa04ecf53896de31abd69e8df6365341c 100644 (file)
@@ -729,16 +729,17 @@ jobs:
       #    name: vim${{ matrix.bits }}-${{ matrix.toolchain }}
       #    path: ./artifacts
 
-      - name: Install packages for testing
-        shell: bash
-        run: |
-          if ${{ matrix.features != 'TINY' }}; then
-            if ${{ matrix.arch == 'x64' }}; then
-              choco install netbeans --no-progress
-            else
-              exit 0
-            fi
-          fi
+      # disabled because of https://github.com/tunisiano187/Chocolatey-packages/issues/3916
+      #- name: Install packages for testing
+      #  shell: bash
+      #  run: |
+      #    if ${{ matrix.features != 'TINY' }}; then
+      #      if ${{ matrix.arch == 'x64' }}; then
+      #        choco install netbeans --no-progress
+      #      else
+      #        exit 0
+      #      fi
+      #    fi
 
       - name: Test and show the result of testing gVim
         if: matrix.GUI == 'yes' || matrix.VIMDLL == 'yes'