Skip to content

Commit

Permalink
iox-##692 Temporary test
Browse files Browse the repository at this point in the history
Signed-off-by: Ibrahim Kuru <ibrahim.kuru@apex.ai>
  • Loading branch information
ibrhmkuru committed Jan 18, 2023
1 parent 43387e0 commit bd2ea9b
Showing 1 changed file with 45 additions and 1 deletion.
46 changes: 45 additions & 1 deletion .github/workflows/build-test.yml
Expand Up @@ -128,6 +128,7 @@ jobs:
path: |
build/hoofs/test/hoofs_moduletests
build/posh/test/posh_moduletests
build/posh/test/posh_integrationtests
test-ubuntu-with-thread-sanitizer-hoofs-moduletest:
# prevent stuck jobs consuming runners for 1 hour
Expand All @@ -145,7 +146,50 @@ jobs:
name: test-binaries
path: test_bins
- name: Execute the test
run: chmod a+x test_bins/hoofs/test/hoofs_moduletests; test_bins/hoofs/test/hoofs_moduletests --gtest_filter=-*.TimingTest_* --gtest_output=xml:hoofs_ModuleTestResults.xml
run: |
chmod a+x test_bins/hoofs/test/hoofs_moduletests
test_bins/hoofs/test/hoofs_moduletests --gtest_filter=-*.TimingTest_* --gtest_output=xml:hoofs_ModuleTestResults.xml
test-ubuntu-with-thread-sanitizer-posh-moduletest:
# prevent stuck jobs consuming runners for 1 hour
timeout-minutes: 60
runs-on: ubuntu-latest
needs: build-ubuntu-with-thread-sanitizer-clang-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install iceoryx dependencies and clang-tidy
uses: ./.github/actions/install-iceoryx-deps-and-clang
- name: download posh-test-binaries
uses: actions/download-artifact@v3
with:
name: test-binaries
path: test_bins
- name: Execute the test
run: |
chmod a+x test_bins/posh/test/posh_moduletests
test_bins/posh/test/posh_moduletests --gtest_filter=-*.TimingTest_* --gtest_output=xml:posh_ModuleTestResults.xml
test-ubuntu-with-thread-sanitizer-posh-integrationtest:
# prevent stuck jobs consuming runners for 1 hour
timeout-minutes: 60
runs-on: ubuntu-latest
needs: build-ubuntu-with-thread-sanitizer-clang-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install iceoryx dependencies and clang-tidy
uses: ./.github/actions/install-iceoryx-deps-and-clang
- name: download posh-test-binaries
uses: actions/download-artifact@v3
with:
name: test-binaries
path: test_bins
- name: Execute the test
run: |
chmod a+x test_bins/posh/test/posh_integrationtests
test_bins/posh/test/posh_integrationtests --gtest_filter=-*.TimingTest_* --gtest_output=xml:posh_IntegrationTestResults.xml
build-test-macos-with-address-sanitizer:
# prevent stuck jobs consuming runners for 1 hour
Expand Down

0 comments on commit bd2ea9b

Please sign in to comment.