Skip to content

Commit ae4de01

Browse files
committed
wip
1 parent 874633d commit ae4de01

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/os-check.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Ubuntu-Macos-Windows Tests
33
# START OF COMMON SECTION
44
on:
55
push:
6-
branches: [ 'master', 'main', 'release/**' ]
7-
pull_request:
8-
branches: [ '*' ]
6+
# branches: [ 'master', 'main', 'release/**' ]
7+
# pull_request:
8+
# branches: [ '*' ]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ github.ref }}
12-
cancel-in-progress: true
12+
# cancel-in-progress: true
1313
# END OF COMMON SECTION
1414

1515
jobs:
@@ -65,7 +65,7 @@ jobs:
6565
--enable-cert-setup-cb --enable-sessioncerts',
6666
]
6767
name: make check
68-
if: github.repository_owner == 'wolfssl'
68+
# if: github.repository_owner == 'wolfssl'
6969
runs-on: ${{ matrix.os }}
7070
# This should be a safe limit for the tests to run.
7171
timeout-minutes: 14
@@ -86,7 +86,7 @@ jobs:
8686
'examples/configs/user_settings_all.h',
8787
]
8888
name: make user_setting.h
89-
if: github.repository_owner == 'wolfssl'
89+
# if: github.repository_owner == 'wolfssl'
9090
runs-on: ${{ matrix.os }}
9191
# This should be a safe limit for the tests to run.
9292
timeout-minutes: 14
@@ -113,7 +113,7 @@ jobs:
113113
'examples/configs/user_settings_tls12.h',
114114
]
115115
name: make user_setting.h (testwolfcrypt only)
116-
if: github.repository_owner == 'wolfssl'
116+
# if: github.repository_owner == 'wolfssl'
117117
runs-on: ${{ matrix.os }}
118118
# This should be a safe limit for the tests to run.
119119
timeout-minutes: 14
@@ -135,7 +135,7 @@ jobs:
135135
matrix:
136136
os: [ ubuntu-22.04, macos-latest ]
137137
name: make user_setting.h (with sed)
138-
if: github.repository_owner == 'wolfssl'
138+
# if: github.repository_owner == 'wolfssl'
139139
runs-on: ${{ matrix.os }}
140140
# This should be a safe limit for the tests to run.
141141
timeout-minutes: 14
@@ -154,7 +154,7 @@ jobs:
154154
155155
windows_build:
156156
name: Windows Build Test
157-
if: github.repository_owner == 'wolfssl'
157+
# if: github.repository_owner == 'wolfssl'
158158
runs-on: windows-latest
159159
strategy:
160160
fail-fast: false

wolfssl/test.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1555,7 +1555,7 @@ static WC_INLINE void udp_connect(SOCKET_T* sockfd, const char* ip, word16 port)
15551555
SOCKADDR_IN_T addr;
15561556
build_addr(&addr, ip, port, 1, 0);
15571557
if (connect(*sockfd, (const struct sockaddr*)&addr, sizeof(addr)) != 0)
1558-
err_sys_with_errno("tcp connect failed");
1558+
err_sys_with_errno("udp connect failed");
15591559
}
15601560

15611561

0 commit comments

Comments
 (0)