nightly-ci #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: nightly-ci | |
| run-name: ${{ github.event.inputs.test_mode == 'true' && format('[Test Mode] {0}', github.workflow) || github.workflow }} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| on: | |
| schedule: | |
| - cron: '0 4 * * *' | |
| # The dispatch is only for test purpose | |
| # workflow_dispatch: | |
| # inputs: | |
| # test_mode: | |
| # description: 'Run in test mode' | |
| # type: boolean | |
| # default: false | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| e2e-android: | |
| uses: ./.github/workflows/android.yaml | |
| with: | |
| nightly_test_mode: ${{ github.event.inputs.test_mode == 'true' }} | |
| secrets: inherit | |
| e2e-ios: | |
| uses: ./.github/workflows/ios.yaml | |
| with: | |
| nightly_test_mode: ${{ github.event.inputs.test_mode == 'true' }} | |
| secrets: inherit | |
| e2e-macos: | |
| uses: ./.github/workflows/macos.yaml | |
| with: | |
| nightly_test_mode: ${{ github.event.inputs.test_mode == 'true' }} | |
| secrets: inherit | |
| e2e-web: | |
| uses: ./.github/workflows/web.yaml | |
| with: | |
| nightly_test_mode: ${{ github.event.inputs.test_mode == 'true' }} | |
| secrets: inherit | |
| e2e-windows: | |
| uses: ./.github/workflows/windows.yaml | |
| with: | |
| nightly_test_mode: ${{ github.event.inputs.test_mode == 'true' }} | |
| secrets: inherit | |
| e2e-fdc: | |
| uses: ./.github/workflows/e2e_tests_fdc.yaml | |
| with: | |
| nightly_test_mode: ${{ github.event.inputs.test_mode == 'true' }} | |
| secrets: inherit | |
| e2e-pipeline: | |
| uses: ./.github/workflows/e2e_tests_pipeline.yaml | |
| if: ${{ github.event.inputs.test_mode != 'true' }} | |
| secrets: inherit | |
| update-dashboard: | |
| runs-on: ubuntu-latest | |
| if: ${{ always() && !cancelled() }} | |
| needs: [e2e-android, e2e-ios, e2e-macos, e2e-web, e2e-windows, e2e-fdc, e2e-pipeline] | |
| steps: | |
| - uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
| - uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff | |
| with: | |
| channel: 'stable' | |
| - name: Update Dashboard Issue | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TEST_MODE: ${{ github.event.inputs.test_mode == 'true' }} | |
| ANDROID_STATUS: ${{ needs.e2e-android.result }} | |
| IOS_STATUS: ${{ needs.e2e-ios.result }} | |
| MACOS_STATUS: ${{ needs.e2e-macos.result }} | |
| WEB_STATUS: ${{ needs.e2e-web.result }} | |
| WINDOWS_STATUS: ${{ needs.e2e-windows.result }} | |
| FDC_STATUS: ${{ needs.e2e-fdc.result }} | |
| PIPELINE_STATUS: ${{ needs.e2e-pipeline.result }} | |
| REPO: ${{ github.repository }} | |
| run: | | |
| dart .github/workflows/scripts/nightly_issue_dashboard.dart |