Skip to content

BlueCyro is building libheif #5

BlueCyro is building libheif

BlueCyro is building libheif #5

Workflow file for this run

name: Build libheif
run-name: ${{ github.actor }} is building libheif
on:
push:
branches:
- cyro/feat/libheif-build-actions
jobs:
Build-Libheif-All-Platforms:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} cloned"
- name: "CD into repo directory"
run: |
cd ${{ github.workspace }}
- name: "[Debug] List directory contents"
run: "ls -lah"
- name: Make build directory
run: mkdir build
- name: Create output directory variable
run: echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: CD into build directory
run: cd build
- name: Configure CMake
run: cmake --preset=release-noplugins ..
- name: Build libheif
run: make