diff options
| author | ArnaudBienner <abien@dolby.com> | 2021-09-13 22:10:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-13 22:10:09 +0200 |
| commit | 15bc585884268d6c70901dc9aabb153b0d4ad7d6 (patch) | |
| tree | e185f8b3ad88c20140227adab42b570de45c3823 /.github/workflows | |
| parent | 3c039894faa59318e3119011b417980a5672c82d (diff) | |
Update ci.yml
Diffstat (limited to '.github/workflows')
| -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 |
