diff options
| author | John Hurst <jhurst@cinecert.com> | 2021-10-01 17:26:18 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-01 17:26:18 -0700 |
| commit | 03aebe66dcfaa1142a095bccc2c618fd922a0cb9 (patch) | |
| tree | 58a705ca34d9f245d8a2366ccbee7f9ab825295b | |
| parent | c331f7677c59ea1fdab99dabf6d138679fb4101f (diff) | |
| parent | deef0c45d3e36e3fa29c5a22964928cacebfd410 (diff) | |
Merge pull request #100 from DolbyLaboratories/ci_jxs_build
CI: add JPEG XS build
| -rw-r--r-- | .github/workflows/ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd187b6..94ea854 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,3 +67,21 @@ jobs: - name: make working-directory: build run: make + + build_ubuntu_cmake_with_jxs: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: dependencies + run: sudo apt-get update && sudo apt-get install -y + libxerces-c-dev + - name: Create build dir + run: mkdir build + - name: cmake + working-directory: build + run: cmake .. -DUSE_ASDCP_JXS=ON + - name: make + working-directory: build + run: make |
