mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Merge pull request #20800 from github/redsun82/remove-macos-13
CI: update images in `build-ripunzip.yml`
This commit is contained in:
16
.github/workflows/build-ripunzip.yml
vendored
16
.github/workflows/build-ripunzip.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Build runzip
|
name: Build ripunzip
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -6,24 +6,28 @@ on:
|
|||||||
ripunzip-version:
|
ripunzip-version:
|
||||||
description: "what reference to checktout from google/runzip"
|
description: "what reference to checktout from google/runzip"
|
||||||
required: false
|
required: false
|
||||||
default: v2.0.2
|
|
||||||
openssl-version:
|
openssl-version:
|
||||||
description: "what reference to checkout from openssl/openssl for Linux"
|
description: "what reference to checkout from openssl/openssl for Linux"
|
||||||
required: false
|
required: false
|
||||||
default: openssl-3.5.0
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- .github/workflows/build-ripunzip.yml
|
||||||
|
env:
|
||||||
|
RIPUNZIP_DEFAULT: v2.0.3
|
||||||
|
OPENSSL_DEFAULT: openssl-3.6.0
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-22.04, macos-13, windows-2022]
|
os: [ubuntu-24.04, macos-15, windows-2025]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
repository: google/ripunzip
|
repository: google/ripunzip
|
||||||
ref: ${{ inputs.ripunzip-version }}
|
ref: ${{ inputs.ripunzip-version || env.RIPUNZIP_DEFAULT }}
|
||||||
# we need to avoid ripunzip dynamically linking into libssl
|
# we need to avoid ripunzip dynamically linking into libssl
|
||||||
# see https://github.com/sfackler/rust-openssl/issues/183
|
# see https://github.com/sfackler/rust-openssl/issues/183
|
||||||
- if: runner.os == 'Linux'
|
- if: runner.os == 'Linux'
|
||||||
@@ -32,7 +36,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
repository: openssl/openssl
|
repository: openssl/openssl
|
||||||
path: openssl
|
path: openssl
|
||||||
ref: ${{ inputs.openssl-version }}
|
ref: ${{ inputs.openssl-version || env.OPENSSL_DEFAULT }}
|
||||||
- if: runner.os == 'Linux'
|
- if: runner.os == 'Linux'
|
||||||
name: build and install openssl with fPIC
|
name: build and install openssl with fPIC
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
Reference in New Issue
Block a user