Skip to content

Commit

Permalink
fix test path
Browse files Browse the repository at this point in the history
  • Loading branch information
niyatim23 committed Feb 16, 2022
1 parent 77f283b commit 51ae935
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
role-session-name: ${{ secrets.AWS_ROLE_SESSION_NAME }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Run tests
run: |
run: |
cd build
./tst/producerTest
mac-os-build-gcc:
Expand Down Expand Up @@ -68,6 +69,7 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}
- name: Run tests
run: |
cd build
./tst/producerTest
linux-gcc-code-coverage:
Expand Down Expand Up @@ -96,10 +98,12 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}
- name: Run tests
run: |
cd build
ulimit -c unlimited -S
timeout --signal=SIGABRT 20m ./tst/producerTest
- name: Code coverage
run: |
cd build
for test_file in $(find CMakeFiles/KinesisVideoProducer.dir gstkvssink.dir KinesisVideoProducerJNI.dir -name '*.gcno'); do gcov $test_file; done
bash <(curl -s https://codecov.io/bash)
Expand Down Expand Up @@ -131,6 +135,7 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}
- name: Run tests
run: |
cd build
ulimit -c unlimited -S
timeout --signal=SIGABRT 20m ./tst/producerTest
Expand Down Expand Up @@ -162,6 +167,7 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}
- name: Run tests
run: |
cd build
ulimit -c unlimited -S
timeout --signal=SIGABRT 20m ./tst/producerTest
Expand Down Expand Up @@ -250,6 +256,7 @@ jobs:
aws-region: ${{ secrets.AWS_REGION }}
- name: Run tests
run: |
cd build
ulimit -c unlimited -S
timeout --signal=SIGABRT 20m ./tst/producerTest
Expand Down

0 comments on commit 51ae935

Please sign in to comment.