Skip to content

Commit

Permalink
Corrections to github workflow
Browse files Browse the repository at this point in the history
Summary:
Corrections to github workflow:
- Fix test job names
- Remove quote marks that broke exclusion rules
- Exclude additional test that recently failed

Reviewed By: enpe

Differential Revision:
D59637694

Privacy Context Container: L1191897

fbshipit-source-id: fec459c38cdb675b7ae183c22121545b480b4fc8
  • Loading branch information
thorntondr authored and facebook-github-bot committed Jul 11, 2024
1 parent 3757232 commit 6f0a124
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
ctest-args: '-j 16 -R TestFrameFilterScharr'

testcv-FrameFilter-Other:
name: Run ctest in testcv (TestFrameFilter) (${{ matrix.build_config }}, static)
name: Run ctest in testcv (TestFrameFilter Other) (${{ matrix.build_config }}, static)
needs: build
runs-on: ubuntu-latest
strategy:
Expand All @@ -179,7 +179,7 @@ jobs:
ctest-args: '-j 16 -R TestFrameFilter -E TestFrameFilterScharr'

testcv-FrameVariance:
name: Run ctest in testcv (TestFrame misc.) (${{ matrix.build_config }}, static)
name: Run ctest in testcv (TestFrameVariance) (${{ matrix.build_config }}, static)
needs: build
runs-on: ubuntu-latest
strategy:
Expand All @@ -196,7 +196,7 @@ jobs:
ctest-args: '-j 16 -R TestFrameVariance'

testcv-Frame-Other:
name: Run ctest in testcv (TestFrame misc.) (${{ matrix.build_config }}, static)
name: Run ctest in testcv (TestFrame Other) (${{ matrix.build_config }}, static)
needs: build
runs-on: ubuntu-latest
strategy:
Expand All @@ -211,7 +211,7 @@ jobs:
install-path: ${{ env.OCEAN_INSTALL_PATH }}/linux_static_${{ matrix.build_config }}
test-directory: impl/ocean/test/testcv
# Exclude tests covered by previous jobs
ctest-args: '-j 16 -R TestFrame -E "TestFrameConverter|TestFrameFilter|TestFrameVariance"'
ctest-args: '-j 16 -R TestFrame -E TestFrameConverter|TestFrameFilter|TestFrameVariance'

testcv-Other:
name: Run ctest in testcv (Other) (${{ matrix.build_config }}, static)
Expand All @@ -230,7 +230,7 @@ jobs:
test-directory: impl/ocean/test/testcv
# Exclude tests covered by other jobs
# Exclude test(s) known to fail
ctest-args: '-j 16 -E "TestAdvancedFrame|TestFrame|TestFASTDetector.StandardStrength"'
ctest-args: '-j 16 -E TestAdvancedFrame|TestFrame|TestFASTDetector.StandardStrength'

testdevices:
name: Run ctest in testdevices (${{ matrix.build_config }}, static)
Expand Down Expand Up @@ -348,3 +348,5 @@ jobs:
build-path: ${{ env.OCEAN_BUILD_PATH }}/linux_static_${{ matrix.build_config }}
install-path: ${{ env.OCEAN_INSTALL_PATH }}/linux_static_${{ matrix.build_config }}
test-directory: impl/ocean/test/testtracking
# Exclude tests that are known to fail
ctest-args: '-E TestHomographyImageAlignmentDense.InverseCompositional_2'

0 comments on commit 6f0a124

Please sign in to comment.