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:
# From <https://github.com/actions/runner-images/issues/2840>
- name: Free up disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- 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