Skip to content

Commit c28906f

Browse files
committed
Show Tcipip params
1 parent 4749a3c commit c28906f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/workflow.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ jobs:
103103
bzlmod: [bzlmod, workspace]
104104
runs-on: ${{ matrix.os }}
105105
steps:
106+
- if: ${{ matrix.os == 'windows-latest' }}
107+
run: reg query HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
106108
- if: ${{ matrix.os == 'ubuntu-latest' }}
107109
run: |-
108110
sudo swapoff -a
@@ -207,7 +209,7 @@ jobs:
207209
mkdir -p logs
208210
export PATH=$HOME/bazel:$PATH
209211
base=$( bazel info output_base )
210-
find "$base" -mindepth 1 -maxdepth 1 -name "java*.log.*" -print0 | xargs -0r cp -T logs
212+
find "$base" -mindepth 1 -maxdepth 1 -name "java*.log.*" -print0 | xargs -0r cp -t logs
211213
212214
- name: Collect logs
213215
if: always()
@@ -217,7 +219,7 @@ jobs:
217219
export PATH=$HOME/bazel:$PATH
218220
cd rules_haskell_tests
219221
base=$( bazel info output_base )
220-
find "$base" -mindepth 1 -maxdepth 1 -name "java*.log.*" -print0 | xargs -0r cp -T logs
222+
find "$base" -mindepth 1 -maxdepth 1 -name "java*.log.*" -print0 | xargs -0r cp -t logs
221223
222224
- name: Upload logs
223225
if: always()

0 commit comments

Comments
 (0)