File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 1- name : Build runzip
1+ name : Build ripunzip
22
33on :
44 workflow_dispatch :
55 inputs :
66 ripunzip-version :
77 description : " what reference to checktout from google/runzip"
88 required : false
9- default : v2.0.2
109 openssl-version :
1110 description : " what reference to checkout from openssl/openssl for Linux"
1211 required : false
13- default : openssl-3.5.0
12+ pull_request :
13+ paths :
14+ - .github/workflows/build-ripunzip.yml
15+ env :
16+ RIPUNZIP_DEFAULT : v2.0.3
17+ OPENSSL_DEFAULT : openssl-3.6.0
1418
1519jobs :
1620 build :
1721 strategy :
1822 fail-fast : false
1923 matrix :
20- os : [ubuntu-22 .04, macos-13 , windows-2022 ]
24+ os : [ubuntu-24 .04, macos-15 , windows-2025 ]
2125 runs-on : ${{ matrix.os }}
2226 steps :
2327 - uses : actions/checkout@v5
2428 with :
2529 repository : google/ripunzip
26- ref : ${{ inputs.ripunzip-version }}
30+ ref : ${{ inputs.ripunzip-version || env.RIPUNZIP_DEFAULT }}
2731 # we need to avoid ripunzip dynamically linking into libssl
2832 # see https://github.com/sfackler/rust-openssl/issues/183
2933 - if : runner.os == 'Linux'
3236 with :
3337 repository : openssl/openssl
3438 path : openssl
35- ref : ${{ inputs.openssl-version }}
39+ ref : ${{ inputs.openssl-version || env.OPENSSL_DEFAULT }}
3640 - if : runner.os == 'Linux'
3741 name : build and install openssl with fPIC
3842 shell : bash
You can’t perform that action at this time.
0 commit comments