Skip to content

Commit 8a72470

Browse files
committed
bpo-38820: Run CI with OpenSSL 3.0.0-alpha14
1 parent 9e7b207 commit 8a72470

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.azure-pipelines/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
variables:
5858
testRunTitle: '$(build.sourceBranchName)-linux'
5959
testRunPlatform: linux
60-
openssl_version: 1.1.1k
60+
openssl_version: 3.0.0-alpha14
6161

6262
steps:
6363
- template: ./posix-steps.yml
@@ -83,7 +83,7 @@ jobs:
8383
variables:
8484
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
8585
testRunPlatform: linux-coverage
86-
openssl_version: 1.1.1k
86+
openssl_version: 3.0.0-alpha14
8787

8888
steps:
8989
- template: ./posix-steps.yml

.azure-pipelines/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
variables:
5858
testRunTitle: '$(system.pullRequest.TargetBranch)-linux'
5959
testRunPlatform: linux
60-
openssl_version: 1.1.1k
60+
openssl_version: 3.0.0-alpha14
6161

6262
steps:
6363
- template: ./posix-steps.yml
@@ -83,7 +83,7 @@ jobs:
8383
variables:
8484
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
8585
testRunPlatform: linux-coverage
86-
openssl_version: 1.1.1k
86+
openssl_version: 3.0.0-alpha14
8787

8888
steps:
8989
- template: ./posix-steps.yml

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
needs: check_source
132132
if: needs.check_source.outputs.run_tests == 'true'
133133
env:
134-
OPENSSL_VER: 1.1.1k
134+
OPENSSL_VER: 3.0.0-alpha14
135135
steps:
136136
- uses: actions/checkout@v2
137137
- name: Register gcc problem matcher

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: 'Ubuntu (Coverage)'
2626
runs-on: ubuntu-latest
2727
env:
28-
OPENSSL_VER: 1.1.1k
28+
OPENSSL_VER: 3.0.0-alpha14
2929
steps:
3030
- uses: actions/checkout@v2
3131
- name: Install Dependencies

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cache:
1010

1111
env:
1212
global:
13-
- OPENSSL=1.1.1k
13+
- OPENSSL=3.0.0-alpha14
1414
- OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}"
1515
- PATH="${OPENSSL_DIR}/bin:$PATH"
1616
- CFLAGS="-I${OPENSSL_DIR}/include"

Mac/BuildScript/build-installer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,9 +242,9 @@ def library_recipes():
242242

243243
result.extend([
244244
dict(
245-
name="OpenSSL 1.1.1k",
246-
url="https://www.openssl.org/source/openssl-1.1.1k.tar.gz",
247-
checksum='c4e7d95f782b08116afa27b30393dd27',
245+
name="OpenSSL 3.0.0-alpha14",
246+
url="https://www.openssl.org/source/openssl-3.0.0-alpha14.tar.gz",
247+
checksum='65bbd34991af56f0d94139c42dd40001',
248248
buildrecipe=build_universal_openssl,
249249
configure=None,
250250
install=None,

0 commit comments

Comments
 (0)