diff options
| author | jhurst <jhurst@cinecert.com> | 2021-09-16 09:24:56 -0700 |
|---|---|---|
| committer | jhurst <jhurst@cinecert.com> | 2021-09-16 09:24:56 -0700 |
| commit | 074872d9ba3ea42e7e274dab2af3f3705cfcec9a (patch) | |
| tree | d556ffbe5bf7c97f0f07607d93a48e37a056b278 | |
| parent | a68d97ca411489b4f84ef324122eeb0bea701e82 (diff) | |
| parent | 755b05748fee968edcbcab5a38361b44a8a146fe (diff) | |
Merge branch 'master' of https://github.com/cinecert/asdcplib
| -rw-r--r-- | .github/workflows/ci.yml | 30 |
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 |
