Reduce linux integration tests to relieve DB pressure

This commit is contained in:
Cyberboss
2020-12-28 14:25:15 -05:00
parent f25fda747d
commit 30d25c8c5e
+1 -49
View File
@@ -305,7 +305,7 @@ jobs:
matrix:
database-type: [ 'Sqlite', 'PostgresSql', 'MariaDB', 'MySql' ]
watchdog-type: [ 'Basic', 'System' ]
configuration: [ 'Debug', 'Release' ]
configuration: [ 'Release' ]
runs-on: ubuntu-latest
steps:
- name: Disable ptrace_scope
@@ -459,96 +459,48 @@ jobs:
name: linux-unit-test-coverage-Release
path: ./code_coverage/unit_tests/linux_unit_tests_release
- name: Retrieve Linux Integration Test Coverage (Debug, Basic, Sqlite)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-Basic-Sqlite
path: ./code_coverage/integration_tests/linux_integration_tests_debug_basic_sqlite
- name: Retrieve Linux Integration Test Coverage (Release, Basic, Sqlite)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-Basic-Sqlite
path: ./code_coverage/integration_tests/linux_integration_tests_release_basic_sqlite
- name: Retrieve Linux Integration Test Coverage (Debug, System, Sqlite)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-System-Sqlite
path: ./code_coverage/integration_tests/linux_integration_tests_debug_system_sqlite
- name: Retrieve Linux Integration Test Coverage (Release, System, Sqlite)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-System-Sqlite
path: ./code_coverage/integration_tests/linux_integration_tests_release_system_sqlite
- name: Retrieve Linux Integration Test Coverage (Debug, Basic, PostgresSql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-Basic-PostgresSql
path: ./code_coverage/integration_tests/linux_integration_tests_debug_basic_postgressql
- name: Retrieve Linux Integration Test Coverage (Release, Basic, PostgresSql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-Basic-PostgresSql
path: ./code_coverage/integration_tests/linux_integration_tests_release_basic_postgressql
- name: Retrieve Linux Integration Test Coverage (Debug, System, PostgresSql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-System-PostgresSql
path: ./code_coverage/integration_tests/linux_integration_tests_debug_system_postgressql
- name: Retrieve Linux Integration Test Coverage (Release, System, PostgresSql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-System-PostgresSql
path: ./code_coverage/integration_tests/linux_integration_tests_release_system_mariadb
- name: Retrieve Linux Integration Test Coverage (Debug, Basic, MariaDB)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-Basic-MariaDB
path: ./code_coverage/integration_tests/linux_integration_tests_debug_basic_mariadb
- name: Retrieve Linux Integration Test Coverage (Release, Basic, MariaDB)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-Basic-MariaDB
path: ./code_coverage/integration_tests/linux_integration_tests_release_basic_mariadb
- name: Retrieve Linux Integration Test Coverage (Debug, System, MariaDB)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-System-MariaDB
path: ./code_coverage/integration_tests/linux_integration_tests_debug_system_mariadb
- name: Retrieve Linux Integration Test Coverage (Release, System, MariaDB)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-System-MariaDB
path: ./code_coverage/integration_tests/linux_integration_tests_release_system_mysql
- name: Retrieve Linux Integration Test Coverage (Debug, Basic, MySql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-Basic-MySql
path: ./code_coverage/integration_tests/linux_integration_tests_debug_basic_mysql
- name: Retrieve Linux Integration Test Coverage (Release, Basic, MySql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Release-Basic-MySql
path: ./code_coverage/integration_tests/linux_integration_tests_release_basic_mysql
- name: Retrieve Linux Integration Test Coverage (Debug, System, MySql)
uses: actions/download-artifact@v2
with:
name: linux-integration-test-coverage-Debug-System-MySql
path: ./code_coverage/integration_tests/linux_integration_tests_debug_system_mysql
- name: Retrieve Linux Integration Test Coverage (Release, System, MySql)
uses: actions/download-artifact@v2
with: