Skip to content

Commit

Permalink
Setup initial GitHub CI to build on macos-amd64.
Browse files Browse the repository at this point in the history
  - Only building for IAMF-LPCM.
  • Loading branch information
jwcullen committed Jun 3, 2024
1 parent 93269fe commit d5b9344
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/actions/libiamf-builder/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@ name: libiamf-builder

description: Build libiamf.

inputs:
build-options:
description: Build command options.
required: false
default: ""

runs:
using: composite
steps:
- shell: bash
run: |
cd code
cmake .
cmake ${{ inputs.build-options }} .
make
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,13 @@ jobs:
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/libiamf-builder
macos-arm64:
runs-on: macos-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/libiamf-builder
with:
build-options: -DCODEC_CAP=off

0 comments on commit d5b9344

Please sign in to comment.