Surprising Time Spent on Running msvc-dev-cmd@v1 on windows-latest
See original GitHub issueI’m suddenly seeing repositories take over 4 minutes on running msvc-dev-cmd@v1, while just a couple days ago they were taking less than a minute. What variables could be causing the increased time? Is there something I can tweak? Does it have to do with changes to windows-latest? Thanks in advance for any insight.
Below is our yml file and the step that is becoming perversely long is “Setup Developer Command Prompt”
name: Build and Test
on:
push
jobs:
build-and-test-windows:
name: Build and Test on Windows
runs-on: windows-latest
timeout-minutes: 5
steps:
- name: Setup Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1
- name: Check Out Source Code
uses: actions/checkout@v2
- name: nmake Build
run: nmake
- name: Run Executable
run: .\assignment4.exe
build-and-test-linux:
name: Build and Test on Linux
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check Out Source Code
uses: actions/checkout@v2
- name: GNU make Build
run: make
- name: Run Executable
run: ./assignment4
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Experience the Power of Windows 11 OS, Computers, & Apps
Explore the versatility of Microsoft's Windows 11 operating system. Find out how our latest Windows OS gives you more ways to work, play,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Alrighty. I’ve bumped
v1
to the latest release. It seems that’s it 🎉@davecom, @FranciscoPombal, I’ve just published
v1.4.1
which should fix this issue. Could you please give it a try? If that works for you, I’ll bumpv1
to that version.