-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (36 loc) · 1.06 KB
/
daily.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Daily
on:
schedule:
- cron: '12 3 * * *'
workflow_dispatch:
jobs:
candidate:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
# few at a time to possibly reduce conflicts due to docker host mounts
max-parallel: 3
matrix:
image:
- debian-stable
- fedora-36
- fedora-37
- opensuse-leap
- opensuse-tumbleweed
- ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-22.10
- ubuntu-23.04
steps:
- name: Git checkout
uses: actions/checkout@v2
- name: Build image
run: sudo ./.github/scripts/build-image.sh ./.github/docker/Dockerfile.${{ matrix.image }}
- name: Install Flutter snap
run: sudo ./.github/scripts/install-flutter.sh --docker --candidate flutter
- name: Build Flutter app
run: sudo ./.github/scripts/build-app.sh ${{ github.workspace }}/test/flutter_app
- name: Run Flutter app
run: sudo ./.github/scripts/run-app.sh
timeout-minutes: 15