Skip to content

Commit

Permalink
temp: test
Browse files Browse the repository at this point in the history
  • Loading branch information
midleman committed Dec 17, 2024
1 parent d6d36f1 commit 0fd08dd
Showing 1 changed file with 48 additions and 43 deletions.
91 changes: 48 additions & 43 deletions .github/workflows/test-full-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0fd08dd

Please sign in to comment.