BlueCyro is building libheif #5
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 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 |