From d5a651b6b36f1de5b4bbd2d9bae556cd4af8b448 Mon Sep 17 00:00:00 2001 From: uazo <29201891+uazo@users.noreply.github.com> Date: Sun, 15 Aug 2021 22:51:17 +0200 Subject: [PATCH] Update execute-tests.yaml --- .github/workflows/execute-tests.yaml | 35 +++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/.github/workflows/execute-tests.yaml b/.github/workflows/execute-tests.yaml index d20a123..b20db1c 100644 --- a/.github/workflows/execute-tests.yaml +++ b/.github/workflows/execute-tests.yaml @@ -79,17 +79,40 @@ jobs: #http_proxy= #https_proxy= - - name: Execute junit tests + - name: Execute chrome junit test shell: bash run: | PATH=$WORKSPACE/chromium/src/third_party/llvm-build/Release+Asserts/bin:$WORKSPACE/depot_tools/:/usr/local/go/bin:$WORKSPACE/mtool/bin:$PATH cd $WORKSPACE/chromium/src + out/bromite/bin/run_chrome_junit_tests | tee out/tests/chrome_junit_tests.log || KO=1 - out/bromite/bin/run_chrome_junit_tests | tee out/tests/chrome_junit_tests.log - out/bromite/bin/run_components_junit_tests | tee out/tests/components_junit_tests.log - out/bromite/bin/run_content_junit_tests | tee out/tests/content_junit_tests.log - out/bromite/bin/run_base_junit_tests | tee out/tests/base_junit_tests.log - out/bromite/bin/run_ui_junit_tests | tee out/tests/ui_junit_tests.log + - name: Execute components junit test + shell: bash + run: | + PATH=$WORKSPACE/chromium/src/third_party/llvm-build/Release+Asserts/bin:$WORKSPACE/depot_tools/:/usr/local/go/bin:$WORKSPACE/mtool/bin:$PATH + cd $WORKSPACE/chromium/src + out/bromite/bin/run_components_junit_tests | tee out/tests/components_junit_tests.log || KO=1 + + - name: Execute content junit test + shell: bash + run: | + PATH=$WORKSPACE/chromium/src/third_party/llvm-build/Release+Asserts/bin:$WORKSPACE/depot_tools/:/usr/local/go/bin:$WORKSPACE/mtool/bin:$PATH + cd $WORKSPACE/chromium/src + out/bromite/bin/run_content_junit_tests | tee out/tests/content_junit_tests.log || KO=1 + + - name: Execute base junit test + shell: bash + run: | + PATH=$WORKSPACE/chromium/src/third_party/llvm-build/Release+Asserts/bin:$WORKSPACE/depot_tools/:/usr/local/go/bin:$WORKSPACE/mtool/bin:$PATH + cd $WORKSPACE/chromium/src + out/bromite/bin/run_base_junit_tests | tee out/tests/base_junit_tests.log || KO=1 + + - name: Execute ui junit test + shell: bash + run: | + PATH=$WORKSPACE/chromium/src/third_party/llvm-build/Release+Asserts/bin:$WORKSPACE/depot_tools/:/usr/local/go/bin:$WORKSPACE/mtool/bin:$PATH + cd $WORKSPACE/chromium/src + out/bromite/bin/run_ui_junit_tests | tee out/tests/ui_junit_tests.log || KO=1 - name: Execute c++ tests shell: bash