summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2021-09-16 09:24:56 -0700
committerjhurst <jhurst@cinecert.com>2021-09-16 09:24:56 -0700
commit074872d9ba3ea42e7e274dab2af3f3705cfcec9a (patch)
treed556ffbe5bf7c97f0f07607d93a48e37a056b278
parenta68d97ca411489b4f84ef324122eeb0bea701e82 (diff)
parent755b05748fee968edcbcab5a38361b44a8a146fe (diff)
Merge branch 'master' of https://github.com/cinecert/asdcplib
-rw-r--r--.github/workflows/ci.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8a2da82..cd187b6 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -37,3 +37,33 @@ jobs:
- name: make
working-directory: build
run: make
+
+ build_ubuntu_cmake_without_ssl:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Create build dir
+ run: mkdir build
+ - name: cmake
+ working-directory: build
+ run: cmake .. -DWITHOUT_SSL=ON
+ - name: make
+ working-directory: build
+ run: make
+
+ build_ubuntu_cmake_without_xml:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Create build dir
+ run: mkdir build
+ - name: cmake
+ working-directory: build
+ run: cmake .. -DWITHOUT_XML=ON
+ - name: make
+ working-directory: build
+ run: make