diff --git a/.github/workflows/test-full-suite.yml b/.github/workflows/test-full-suite.yml index cdfa02d13951..2ca13d3786c6 100644 --- a/.github/workflows/test-full-suite.yml +++ b/.github/workflows/test-full-suite.yml @@ -42,55 +42,60 @@ on: - never jobs: - e2e-electron: - name: e2e - if: ${{ github.event_name == 'schedule' || inputs.run_e2e_linux }} - uses: ./.github/workflows/test-e2e-linux.yml - secrets: inherit - with: - grep: "" - project: "e2e-electron" - display_name: "electron (linux)" - currents_tags: ${{ github.event_name == 'schedule' && 'nightly,electron/linux' || 'electron/linux' }} - report_testrail: true + run-e2e-linux: + runs-on: ubuntu-latest + steps: + - run: exit 1 + # e2e-electron: + # name: e2e + # if: ${{ github.event_name == 'schedule' || inputs.run_e2e_linux }} + # uses: ./.github/workflows/test-e2e-linux.yml + # secrets: inherit + # with: + # grep: "" + # project: "e2e-electron" + # display_name: "electron (linux)" + # currents_tags: ${{ github.event_name == 'schedule' && 'nightly,electron/linux' || 'electron/linux' }} + # report_testrail: true - e2e-windows: - name: e2e - if: ${{ github.event_name == 'schedule' || inputs.run_e2e_windows }} - uses: ./.github/workflows/test-e2e-windows.yml - secrets: inherit - with: - grep: "" - display_name: "electron (win)" - currents_tags: ${{ github.event_name == 'schedule' && 'nightly,electron/win' || 'electron/win' }} - report_testrail: true + # e2e-windows: + # name: e2e + # if: ${{ github.event_name == 'schedule' || inputs.run_e2e_windows }} + # uses: ./.github/workflows/test-e2e-windows.yml + # secrets: inherit + # with: + # grep: "" + # display_name: "electron (win)" + # currents_tags: ${{ github.event_name == 'schedule' && 'nightly,electron/win' || 'electron/win' }} + # report_testrail: true - e2e-browser: - name: e2e - if: ${{ github.event_name == 'schedule' || inputs.run_e2e_browser }} - uses: ./.github/workflows/test-e2e-linux.yml - secrets: inherit - with: - grep: "" - project: "e2e-browser" - display_name: "browser (linux)" - currents_tags: ${{ github.event_name == 'schedule' && 'nightly,browser/linux' || 'browser/linux' }} - report_testrail: true + # e2e-browser: + # name: e2e + # if: ${{ github.event_name == 'schedule' || inputs.run_e2e_browser }} + # uses: ./.github/workflows/test-e2e-linux.yml + # secrets: inherit + # with: + # grep: "" + # project: "e2e-browser" + # display_name: "browser (linux)" + # currents_tags: ${{ github.event_name == 'schedule' && 'nightly,browser/linux' || 'browser/linux' }} + # report_testrail: true - unit-tests: - name: test - if: ${{ github.event_name == 'schedule' || inputs.run_unit_tests }} - uses: ./.github/workflows/test-unit.yml - secrets: inherit + # unit-tests: + # name: test + # if: ${{ github.event_name == 'schedule' || inputs.run_unit_tests }} + # uses: ./.github/workflows/test-unit.yml + # secrets: inherit - integration-tests: - name: test - if: ${{ github.event_name == 'schedule' || inputs.run_integration_tests }} - uses: ./.github/workflows/test-integration.yml - secrets: inherit + # integration-tests: + # name: test + # if: ${{ github.event_name == 'schedule' || inputs.run_integration_tests }} + # uses: ./.github/workflows/test-integration.yml + # secrets: inherit slack-notify: - needs: [e2e-electron, e2e-windows, e2e-browser, unit-tests, integration-tests] + needs: run-e2e-linux + # needs: [e2e-electron, e2e-windows, e2e-browser, unit-tests, integration-tests] runs-on: ubuntu-latest steps: - name: Notify Slack