Skip to content

Commit

Permalink
Perform full upgrade to avoid test suite time out
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Feb 21, 2024
1 parent 26e7fec commit 6ad2ed2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,16 @@ jobs:
sudo apt --quiet --yes update
# Chocolatey
- name: Chocolatey - Windows upgrade
- name: Chocolatey - Windows self-upgrade
if: runner.os == 'Windows'
run: |
choco upgrade chocolatey --no-progress --yes
- name: Chocolatey - Windows full upgrade
if: runner.os == 'Windows'
# We upgrade all packages preemptively as the test suite will attempt it but fail,
# because of mpm's enforced timeout.
run: |
choco upgrade all --no-progress --yes
# NPM
- name: NPM - Linux install
Expand Down

0 comments on commit 6ad2ed2

Please sign in to comment.