Skip to content

Commit

Permalink
OpenSSL 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
217heidai committed Jul 14, 2022
1 parent 08714cf commit 8b8f566
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_arm64-v8a.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: arm64-v8a
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_armeabi-v7a.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: armeabi-v7a
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_armeabi.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: armeabi
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mips.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: mips
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_mips64.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: mips64
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_x86.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: x86
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_x86_64.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
ANDROID_ABI: x86_64
OPENSSL_VERSION: 3.0.4
OPENSSL_VERSION: 3.0.5
ANDROID_NDK_VERSION: r20b
WORK_PATH: /home/runner/work/openssl_for_android/openssl_for_android

Expand Down
1 change: 1 addition & 0 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Automatically compile static OpenSSL(3.0.*) library for Android by Github Action
## ChangeLog
| Date | Content |
|-----------|----------------------------------------------------------------------|
| 2022.07.14 | OpenSSL 3.0.5 |
| 2022.06.23 | OpenSSL 3.0.4 |
| 2022.05.19 | OpenSSL 3.0.3 |
| 2022.03.16 | OpenSSL 3.0.2 |
Expand Down
4 changes: 2 additions & 2 deletions openssl_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

WORK_PATH=$(cd "$(dirname "$0")";pwd)
ANDROID_NDK_PATH=${WORK_PATH}/android-ndk-r20b
OPENSSL_SOURCES_PATH=${WORK_PATH}/openssl-3.0.4
OPENSSL_SOURCES_PATH=${WORK_PATH}/openssl-3.0.5
ANDROID_TARGET_API=$1
ANDROID_TARGET_ABI=$2
OUTPUT_PATH=${WORK_PATH}/openssl_3.0.4_${ANDROID_TARGET_ABI}
OUTPUT_PATH=${WORK_PATH}/openssl_3.0.5_${ANDROID_TARGET_ABI}

OPENSSL_TMP_FOLDER=/tmp/openssl_${ANDROID_TARGET_ABI}
mkdir -p ${OPENSSL_TMP_FOLDER}
Expand Down

0 comments on commit 8b8f566

Please sign in to comment.