1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-13 19:08:41 +00:00
Files
samples/.github/workflows/beta.yml
dependabot[bot] 07a613266c Bump actions/setup-java from 3.5.0 to 3.5.1 (#1446)
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.5.0 to 3.5.1.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](d854b6da19...a18c333f3f)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-09-27 03:41:55 -05:00

68 lines
2.1 KiB
YAML

name: Beta Branch CI
# Declare default permissions as read only.
permissions: read-all
on:
push:
branches: [beta]
pull_request:
branches: [beta]
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
# Run the stable test script on the beta channel. Since this branch will soon
# be merged into main as our stable-targeting code, this is the key thing we
# need to test.
stable-tests-on-beta:
runs-on: ${{ matrix.os }}
if: github.repository == 'flutter/samples'
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-java@a18c333f3f14249953dab3e186e5e21bf3390f1d
with:
distribution: 'zulu'
java-version: '12.x'
- uses: subosito/flutter-action@1e6ee87cb840500837bcd50a667fb28815d8e310
with:
channel: beta
- run: ./tool/flutter_ci_script_stable.sh
# Verify the Android add-to-app samples build and pass tests with the beta
# channel.
android-build:
runs-on: ubuntu-latest
if: github.repository == 'flutter/samples'
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-java@a18c333f3f14249953dab3e186e5e21bf3390f1d
with:
distribution: 'zulu'
java-version: '12.x'
- uses: subosito/flutter-action@1e6ee87cb840500837bcd50a667fb28815d8e310
with:
channel: beta
- run: ./tool/android_ci_script.sh
# Verify the iOS add-to-app samples build and pass tests with the beta
# channel.
ios-build:
runs-on: macos-latest
if: github.repository == 'flutter/samples'
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- uses: actions/setup-java@a18c333f3f14249953dab3e186e5e21bf3390f1d
with:
distribution: 'zulu'
java-version: '12.x'
- uses: subosito/flutter-action@1e6ee87cb840500837bcd50a667fb28815d8e310
with:
channel: beta
- run: ./tool/ios_ci_script.sh