Skip to content

Commit 0f8b4db

Browse files
authored
Merge pull request #8072 from rizlik/github-fix
ci: github: fix ubuntu version to 22.04
2 parents 743a78d + 5d3f7c2 commit 0f8b4db

35 files changed

Lines changed: 70 additions & 70 deletions

.github/workflows/async.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
]
2525
name: make check
2626
if: github.repository_owner == 'wolfssl'
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-22.04
2828
# This should be a safe limit for the tests to run.
2929
timeout-minutes: 6
3030
steps:

.github/workflows/coverity-scan-fixes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
coverity:
1010
if: github.repository_owner == 'wolfssl'
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- uses: actions/checkout@v4
1414
with:

.github/workflows/curl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
build_wolfssl:
1717
name: Build wolfSSL
1818
if: github.repository_owner == 'wolfssl'
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-22.04
2020
# This should be a safe limit for the tests to run.
2121
timeout-minutes: 4
2222
steps:
@@ -40,7 +40,7 @@ jobs:
4040
test_curl:
4141
name: ${{ matrix.curl_ref }}
4242
if: github.repository_owner == 'wolfssl'
43-
runs-on: ubuntu-latest
43+
runs-on: ubuntu-22.04
4444
# This should be a safe limit for the tests to run.
4545
timeout-minutes: 15
4646
needs: build_wolfssl

.github/workflows/cyrus-sasl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Build wolfSSL
1818
if: github.repository_owner == 'wolfssl'
1919
# Just to keep it the same as the testing target
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
# This should be a safe limit for the tests to run.
2222
timeout-minutes: 4
2323
steps:
@@ -48,7 +48,7 @@ jobs:
4848
ref: [ 2.1.28 ]
4949
name: ${{ matrix.ref }}
5050
if: github.repository_owner == 'wolfssl'
51-
runs-on: ubuntu-latest
51+
runs-on: ubuntu-22.04
5252
# This should be a safe limit for the tests to run.
5353
timeout-minutes: 4
5454
needs: build_wolfssl

.github/workflows/disabled/haproxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: [ master ]
2222
name: ${{ matrix.ref }}
2323
if: github.repository_owner == 'wolfssl'
24-
runs-on: ubuntu-latest
24+
runs-on: ubuntu-22.04
2525
steps:
2626
- name: Build wolfSSL
2727
uses: wolfSSL/actions-build-autotools-project@v1

.github/workflows/docker-Espressif.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
espressif_latest:
1616
name: latest Docker container
1717
if: github.repository_owner == 'wolfssl'
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
# This should be a safe limit for the tests to run.
2020
timeout-minutes: 12
2121
container:
@@ -27,7 +27,7 @@ jobs:
2727
espressif_v4_4:
2828
name: v4.4 Docker container
2929
if: github.repository_owner == 'wolfssl'
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
container:
3232
image: espressif/idf:release-v4.4
3333
steps:
@@ -37,7 +37,7 @@ jobs:
3737
espressif_v5_0:
3838
name: v5.0 Docker container
3939
if: github.repository_owner == 'wolfssl'
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-22.04
4141
container:
4242
image: espressif/idf:release-v5.0
4343
steps:

.github/workflows/docker-OpenWrt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build_library:
1919
name: Compile libwolfssl.so
2020
if: github.repository_owner == 'wolfssl'
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
# This should be a safe limit for the tests to run.
2323
timeout-minutes: 4
2424
container:
@@ -42,7 +42,7 @@ jobs:
4242
compile_container:
4343
name: Compile container
4444
if: github.repository_owner == 'wolfssl'
45-
runs-on: ubuntu-latest
45+
runs-on: ubuntu-22.04
4646
# This should be a safe limit for the tests to run.
4747
timeout-minutes: 2
4848
needs: build_library

.github/workflows/grpc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Build wolfSSL
1818
if: github.repository_owner == 'wolfssl'
1919
# Just to keep it the same as the testing target
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
# This should be a safe limit for the tests to run.
2222
timeout-minutes: 10
2323
steps:
@@ -52,7 +52,7 @@ jobs:
5252
h2_ssl_cert_test h2_ssl_session_reuse_test
5353
name: ${{ matrix.ref }}
5454
if: github.repository_owner == 'wolfssl'
55-
runs-on: ubuntu-latest
55+
runs-on: ubuntu-22.04
5656
# This should be a safe limit for the tests to run.
5757
timeout-minutes: 30
5858
needs: build_wolfssl

.github/workflows/hitch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Build wolfSSL
1818
if: github.repository_owner == 'wolfssl'
1919
# Just to keep it the same as the testing target
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-22.04
2121
# This should be a safe limit for the tests to run.
2222
timeout-minutes: 4
2323
steps:
@@ -49,7 +49,7 @@ jobs:
4949
test13-r82.sh test15-proxy-v2-npn.sh test39-client-cert-proxy.sh
5050
name: ${{ matrix.ref }}
5151
if: github.repository_owner == 'wolfssl'
52-
runs-on: ubuntu-latest
52+
runs-on: ubuntu-22.04
5353
# This should be a safe limit for the tests to run.
5454
timeout-minutes: 4
5555
needs: build_wolfssl

.github/workflows/hostap-vm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
--enable-tlsv10 --enable-oldtls
2929
name: Build wolfSSL
3030
if: github.repository_owner == 'wolfssl'
31-
runs-on: ubuntu-latest
31+
runs-on: ubuntu-22.04
3232
# This should be a safe limit for the tests to run.
3333
timeout-minutes: 10
3434
steps:
@@ -66,7 +66,7 @@ jobs:
6666
build_uml_linux:
6767
name: Build UML (UserMode Linux)
6868
if: github.repository_owner == 'wolfssl'
69-
runs-on: ubuntu-latest
69+
runs-on: ubuntu-22.04
7070
# This should be a safe limit for the tests to run.
7171
timeout-minutes: 10
7272
steps:
@@ -143,7 +143,7 @@ jobs:
143143
name: hwsim test
144144
# For openssl 1.1
145145
if: github.repository_owner == 'wolfssl'
146-
runs-on: ubuntu-latest
146+
runs-on: ubuntu-22.04
147147
# This should be a safe limit for the tests to run.
148148
timeout-minutes: 45
149149
needs: [build_wolfssl, build_uml_linux]

0 commit comments

Comments
 (0)