From b1adcb7f5bf1ffcfea5c31291c90d81e22f45f96 Mon Sep 17 00:00:00 2001 From: Zita Liao Date: Mon, 11 Sep 2023 09:23:39 +1000 Subject: [PATCH] test cicd --- .github/workflows/release.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29ade6257..56ed2739f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,17 +2,23 @@ name: media-server-unit-tests on: push: - branches: [ master ] + #branches: [ master ] pull_request: - branches: [ master ] + #branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - name: Initialize submodules - run: git submodule update --init --recursive - uses: actions/checkout@v1 + with: + submodules: 'true' + run: pwd + run: ls -l ./ + run: ls ./ext/googletest/ + run: ls ./ext/libdatachannels + run: git submodule update --init --recursive - name: Configure run: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. - name: make