Skip to content

Commit

Permalink
ci/android: cache openssl build
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers committed Feb 11, 2024
1 parent 1614cc3 commit e26b12b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/cache@v4
id: openssl
with:
path: openssl
key: ${{ runner.os }}-android-openssl-3.2.0

- name: "build openssl"
if: steps.openssl.outputs.cache-hit != 'true'
run: |
wget -q https://www.openssl.org/source/openssl-3.2.0.tar.gz
tar -xzf openssl-3.2.0.tar.gz
Expand Down

0 comments on commit e26b12b

Please sign in to comment.