summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml18
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