Skip to content

Workflow file for this run

name: Build binaries
on:
push:
workflow_dispatch:
inputs:
libwebp_ref:
description: 'libwebp tag to checkout (i.e. v1.2.3)'
required: true
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-binaries:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- run: git -C libwebp-jni/libwebp checkout v1.3.2
- run: cd libwebp-jni && ./compile-all.sh
- run: git status