wip #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |