Skip to content

Commit bdcf614

Browse files
authored
[chore] Release ports on the dynamic range on Windows runners (#10839)
#### Description The default port used by `zpagesextension` is in a range that Windows machines can exclude by default. This change adds a PowerShell script to release the default `zpagesextension` port (55679) on the Windows GH workflows. #### Link to tracking issue Fixes #10811
1 parent 14ec164 commit bdcf614

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/build-and-test-windows.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
~\go\pkg\mod
3434
~\AppData\Local\go-build
3535
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
36+
- name: Ensure required ports in the dynamic range are available
37+
run: |
38+
& ${{ github.workspace }}\.github\workflows\scripts\win-required-ports.ps1
3639
- name: Run Unit Tests
3740
run: make gotest
3841

@@ -55,6 +58,9 @@ jobs:
5558
~\go\pkg\mod
5659
~\AppData\Local\go-build
5760
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
61+
- name: Ensure required ports in the dynamic range are available
62+
run: |
63+
& ${{ github.workspace }}\.github\workflows\scripts\win-required-ports.ps1
5864
5965
- name: Make otelcorecol
6066
run: make otelcorecol
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<#
2+
.SYNOPSIS
3+
This script ensures that the ports required by the default configuration of the collector are available.
4+
.DESCRIPTION
5+
Certain runs on GitHub Actions sometimes have ports required by the default configuration reserved by other
6+
applications via the WinNAT service.
7+
#>
8+
9+
#Requires -RunAsAdministrator
10+
11+
netsh interface ip show excludedportrange protocol=tcp
12+
13+
Stop-Service winnat
14+
15+
# Only port in the dynamic range that is being, from time to time, reserved by other applications.
16+
netsh interface ip add excludedportrange protocol=tcp startport=55679 numberofports=1
17+
18+
Start-Service winnat
19+
20+
netsh interface ip show excludedportrange protocol=tcp

0 commit comments

Comments
 (0)