Update execute-tests.yaml

This commit is contained in:
uazo 2021-08-15 22:51:17 +02:00 committed by GitHub
parent ec247c2ff8
commit d5a651b6b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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