Skip to content

Commit a35c03d

Browse files
authored
Merge branch 'master' into add-translations-for-korean-1-to-100
2 parents d3f2aa3 + aefe722 commit a35c03d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+1968
-444
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
push-to-fork: minikube-bot/minikube
4141
base: master
4242
delete-branch: true
43-
title: 'Update auto-generated docs and translations'
43+
title: 'docs: Update auto-generated docs and translations'
4444
body: |
4545
Committing changes resulting from `make generate-docs`.
4646
This PR is auto-generated by the [gendocs](https://github.com/kubernetes/minikube/blob/master/.github/workflows/docs.yml) CI workflow.

.github/workflows/functional_test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ jobs:
141141
system_profiler SPStorageDataType | sed -n '1,200p' || true
142142
143143
echo "=== Network ==="
144+
echo $HTTP_PROXY
144145
ifconfig
145146
networksetup -listallhardwareports || true
146147
scutil --get HostName || true
@@ -153,6 +154,7 @@ jobs:
153154
echo "=== Uptime and Load ==="
154155
uptime
155156
sysctl kern.boottime || true
157+
top -l 1 -n 0 | head -n 10 || true
156158
157159
echo "=== Security ==="
158160
spctl --status || true
@@ -208,6 +210,7 @@ jobs:
208210
df -h || true
209211
210212
echo "=== Network ==="
213+
echo $HTTP_PROXY
211214
ip addr show || true
212215
ip route || true
213216
ip -s link || true
@@ -219,6 +222,7 @@ jobs:
219222
echo "=== Uptime and Load ==="
220223
uptime || true
221224
who -b || true
225+
top -b -n1 | head -n 10 || true
222226
cat /proc/loadavg || true
223227
awk '{printf "Uptime (seconds): %s\n", $1}' /proc/uptime 2>/dev/null || true
224228
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
@@ -413,7 +417,7 @@ jobs:
413417
go tool test2json -t < ./report/testout.txt > ./report/testout.json || true
414418
STAT=$(gopogh -in ./report/testout.json -out_html ./report/testout.html -out_summary ./report/testout_summary.json -name "${{ matrix.name }} ${GITHUB_REF}" -repo "${GITHUB_REPOSITORY}" -details "${GITHUB_SHA}") || true
415419
# Check if the test step failed AND the log contains "timed out"
416-
if [[ "${{ steps.run_test.outcome }}" == "failure" && $(grep -c "timed out" ./report/testout.txt) -gt 0 ]]; then
420+
if [[ "${{ steps.run_test.outcome }}" == "failure" && $(grep -c "panic: test timed out" ./report/testout.txt) -gt 0 ]]; then
417421
# If it was a timeout, set your custom message
418422
RESULT_SHORT="⌛⌛⌛ Test Timed out ${TIME_ELAPSED} ⌛⌛⌛"
419423
else

.github/workflows/go-mod-tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
push-to-fork: minikube-bot/minikube
4141
base: master
4242
delete-branch: true
43-
title: 'go mod tidy'
43+
title: 'build: go mod tidy'
4444
body: |
4545
Committing changes resulting from `make gomodtidy`.
4646
This PR is auto-generated by the [gendocs](https://github.com/kubernetes/minikube/blob/master/.github/workflows/go-mod-tidy.yml) CI workflow that runs on every push to master.

.github/workflows/leaderboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
push-to-fork: minikube-bot/minikube
4242
base: master
4343
delete-branch: true
44-
title: 'Post-release: Add leaderboard for ${{ github.ref_name }}'
44+
title: 'site: Add leaderboard for ${{ github.ref_name }} (Post-release)'
4545
body: |
4646
Committing changes resulting from `make update-leaderboard`.
4747
This PR is auto-generated by the [update-leaderboard](https://github.com/kubernetes/minikube/blob/master/.github/workflows/leaderboard.yml) CI workflow.

.github/workflows/lint.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ jobs:
6060
with:
6161
go-version: ${{env.GO_VERSION}}
6262
cache: true
63-
- name: Verify gomod tidy
63+
- name: Verify go mod tidy
6464
timeout-minutes: 2
6565
continue-on-error: false
6666
run: |
67+
echo "::group::go mod tidy"
6768
make gomodtidy
68-
if ! git diff --quiet; then
69-
echo "::error::Please run 'make gomodtidy' and commit the changes"
70-
echo "=== files ==="
71-
git diff --name-only
72-
echo "=== diff ==="
73-
git diff -
69+
echo "::endgroup::"
70+
if ! git diff-index --quiet HEAD; then
71+
echo "::group::diff"
72+
git --no-pager diff
73+
echo "::endgroup::"
74+
echo "::notice::Please run 'make gomodtidy' and commit the changes"
7475
exit 1
7576
fi
76-

.github/workflows/time-to-k8s.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ jobs:
3636
push-to-fork: minikube-bot/minikube
3737
base: master
3838
delete-branch: true
39-
title: "Post-release: Add time-to-k8s benchmark for ${{ steps.timeToK8sBenchmark.outputs.version }}"
39+
title: "site: Add time-to-k8s benchmark for ${{ steps.timeToK8sBenchmark.outputs.version }} (Post-release)"
4040
body: Updating time-to-k8s benchmark as part of the release process

.github/workflows/unit-test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ jobs:
5656
run: choco install make -y
5757
# TODO: add gopogh reports for unit tests too
5858
- name: unit test
59-
timeout-minutes: 5
59+
timeout-minutes: 15
6060
env:
6161
TESTSUITE: unittest
6262
run: make test
6363
continue-on-error: false
64-

.github/workflows/update-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
push-to-fork: minikube-bot/minikube
3737
base: master
3838
delete-branch: true
39-
title: 'deubg pr: update all dependencies'
39+
title: 'chore: (debug pr) update all dependencies'
4040
body: |
4141
Changelog:
4242
${{ steps.bumpVersions.outputs.changes }}

.github/workflows/update-go-github-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
push-to-fork: minikube-bot/minikube
4141
base: master
4242
delete-branch: true
43-
title: 'Update go-github from ${{ steps.bumpGoGithub.outputs.OLD_VERSION }} to ${{ steps.bumpGoGithub.outputs.NEW_VERSION }}'
43+
title: 'CI: update go-github from ${{ steps.bumpGoGithub.outputs.OLD_VERSION }} to ${{ steps.bumpGoGithub.outputs.NEW_VERSION }}'
4444
body: |
4545
The go-github project released a [new version](https://github.com/google/go-github)
4646

.github/workflows/update-golang-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
push-to-fork: minikube-bot/minikube
4343
base: master
4444
delete-branch: true
45-
title: 'Update go from ${{ steps.bumpGolang.outputs.OLD_VERSION }} to ${{ steps.bumpGolang.outputs.NEW_VERSION }}'
45+
title: 'build: Update go from ${{ steps.bumpGolang.outputs.OLD_VERSION }} to ${{ steps.bumpGolang.outputs.NEW_VERSION }}'
4646
body: |
4747
Kubernetes Project just updated the [golang version](https://github.com/kubernetes/kubernetes/blob/master/build/build-image/cross/VERSION), updating minikube golang to match Kubernetes.
4848

0 commit comments

Comments
 (0)