mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
CI: make build-ripunzip.yml auto-create update PR
This commit is contained in:
107
.github/workflows/build-ripunzip.yml
vendored
107
.github/workflows/build-ripunzip.yml
vendored
@@ -4,20 +4,43 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
ripunzip-version:
|
ripunzip-version:
|
||||||
description: "what reference to checktout from google/runzip"
|
description: What reference to checktout from google/runzip. Latest by default
|
||||||
required: false
|
required: false
|
||||||
openssl-version:
|
openssl-version:
|
||||||
description: "what reference to checkout from openssl/openssl for Linux"
|
description: What reference to checkout from openssl/openssl for Linux. Latest by default
|
||||||
required: false
|
required: false
|
||||||
|
open-pr:
|
||||||
|
description: Open a pull request updating the ripunzip versions committed to lfs
|
||||||
|
required: false
|
||||||
|
default: true # will be false on PRs
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- .github/workflows/build-ripunzip.yml
|
- .github/workflows/build-ripunzip.yml
|
||||||
env:
|
|
||||||
RIPUNZIP_DEFAULT: v2.0.3
|
|
||||||
OPENSSL_DEFAULT: openssl-3.6.0
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
versions:
|
||||||
|
runs-on: ubuntu-slim
|
||||||
|
outputs:
|
||||||
|
ripunzip-version: ${{ inputs.ripunzip-version || steps.fetch-ripunzip-version.outputs.version }}
|
||||||
|
openssl-version: ${{ inputs.openssl-version || steps.fetch-openssl-version.outputs.version }}
|
||||||
|
steps:
|
||||||
|
- name: Fetch latest ripunzip version
|
||||||
|
id: fetch-ripunzip-version
|
||||||
|
if: "!inputs.ripunzip-version"
|
||||||
|
run: &fetch-version
|
||||||
|
echo "version=$(gh release view --repo $REPO --json tagName --jq .tagName)" | tee -a $GITHUB_OUTPUT
|
||||||
|
env:
|
||||||
|
REPO: "google/ripunzip"
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Fetch latest openssl version
|
||||||
|
id: fetch-openssl-version
|
||||||
|
if: "!inputs.openssl-version"
|
||||||
|
run: *fetch-version
|
||||||
|
env:
|
||||||
|
REPO: "openssl/openssl"
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
build:
|
build:
|
||||||
|
needs: versions
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
@@ -27,7 +50,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
repository: google/ripunzip
|
repository: google/ripunzip
|
||||||
ref: ${{ inputs.ripunzip-version || env.RIPUNZIP_DEFAULT }}
|
ref: ${{ needs.versions.outputs.ripunzip-version }}
|
||||||
# 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'
|
||||||
@@ -36,7 +59,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
repository: openssl/openssl
|
repository: openssl/openssl
|
||||||
path: openssl
|
path: openssl
|
||||||
ref: ${{ inputs.openssl-version || env.OPENSSL_DEFAULT }}
|
ref: ${{ needs.versions.outputs.openssl-version }}
|
||||||
- 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
|
||||||
@@ -68,11 +91,77 @@ jobs:
|
|||||||
lipo -create -output ripunzip-macos \
|
lipo -create -output ripunzip-macos \
|
||||||
-arch x86_64 target/x86_64-apple-darwin/release/ripunzip \
|
-arch x86_64 target/x86_64-apple-darwin/release/ripunzip \
|
||||||
-arch arm64 target/aarch64-apple-darwin/release/ripunzip
|
-arch arm64 target/aarch64-apple-darwin/release/ripunzip
|
||||||
- uses: actions/upload-artifact@v4
|
- name: Archive (POSIX)
|
||||||
|
if: runner.os != 'Windows'
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
zip -j ripunzip-${{ runner.os }}.zip ripunzip-*
|
||||||
|
- name: Archive (Windows)
|
||||||
|
if: runner.os == 'Windows'
|
||||||
|
shell: powershell
|
||||||
|
run: |
|
||||||
|
Compress-Archive -Path ripunzip-* -DestinationPath ripunzip-${{ runner.os }}.zip -Force
|
||||||
|
- name: Upload built binary
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ripunzip-${{ runner.os }}
|
name: ripunzip-${{ runner.os }}
|
||||||
path: ripunzip-*
|
path: ripunzip-${{ runner.os }}.zip
|
||||||
|
retention-days: 5
|
||||||
|
compression: 0
|
||||||
- name: Check built binary
|
- name: Check built binary
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
rm -f ripunzip-*.zip
|
||||||
./ripunzip-* --version
|
./ripunzip-* --version
|
||||||
|
publish:
|
||||||
|
needs: [versions, build]
|
||||||
|
if: inputs.open-pr == 'true'
|
||||||
|
runs-on: ubuntu-slim
|
||||||
|
steps:
|
||||||
|
# workaround for git-lfs not being installed yet on ubuntu-slim runners
|
||||||
|
- name: Ensure git-lfs is installed
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
if which git-lfs &>/dev/null; then
|
||||||
|
echo "git-lfs is already installed"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
cd $TMP
|
||||||
|
gh release download --repo git-lfs/git-lfs --pattern "git-lfs-linux-amd64-*.tar.gz" --clobber
|
||||||
|
tar xzf git-lfs-linux-amd64-*.tar.gz
|
||||||
|
rm git-lfs-linux-amd64-*.tar.gz
|
||||||
|
cd git-lfs-*
|
||||||
|
pwd | tee -a $GITHUB_PATH
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- uses: actions/checkout@v5
|
||||||
|
with:
|
||||||
|
sparse-checkout: |
|
||||||
|
.github
|
||||||
|
misc/ripunzip
|
||||||
|
lfs: true
|
||||||
|
- name: Download built binaries
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
merge-multiple: true
|
||||||
|
path: misc/ripunzip
|
||||||
|
- name: Open PR
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
git config --global user.name "github-actions[bot]"
|
||||||
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
git switch -c update-ripunzip
|
||||||
|
git add misc/ripunzip
|
||||||
|
git commit -m "Update ripunzip binaries to version $VERSION"
|
||||||
|
git push --set-upstream origin update-ripunzip --force
|
||||||
|
TITLE="Update ripunzip binaries to version $VERSION"
|
||||||
|
gh pr create \
|
||||||
|
--draft \
|
||||||
|
--title "$TITLE" \
|
||||||
|
--body "Automated update of ripunzip binaries." \
|
||||||
|
--assignee "$ACTOR" ||
|
||||||
|
(gh pr edit --title "$TITLE" --add-assignee "$ACTOR" && gh pr ready --undo)
|
||||||
|
env:
|
||||||
|
ACTOR: ${{ github.actor }}
|
||||||
|
VERSION: ${{ needs.versions.outputs.ripunzip-version }}
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
Reference in New Issue
Block a user