Skip to content

feat: added a custom slot provider option for user to select the slot no and rearrange the order #1373

feat: added a custom slot provider option for user to select the slot no and rearrange the order

feat: added a custom slot provider option for user to select the slot no and rearrange the order #1373

Workflow file for this run

name: Badge Magic PR CI
on:
pull_request:
branches: [ "development" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
ANDROID_EMULATOR_API: 34
ANDROID_EMULATOR_ARCH: x86_64
IPHONE_DEVICE_MODEL: iPhone 16 Pro Max
IPAD_DEVICE_MODEL: iPad Pro 13-inch (M4)
jobs:
common:
name: Common Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Common Workflow
uses: ./.github/actions/common
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v5
with:
name: pr
path: pr/
android:
name: Android Flutter Build
needs: common
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Android Workflow
uses: ./.github/actions/android
ios:
name: iOS Flutter Build
needs: common
runs-on: macos-latest
steps:
- name: Set up Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest-stable
- uses: actions/checkout@v5
- name: iOS Workflow
uses: ./.github/actions/ios
screenshots-android:
name: Screenshots (Android)
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- name: Android Screenshot Workflow
uses: ./.github/actions/screenshot-android
with:
ANDROID_EMULATOR_API: ${{ env.ANDROID_EMULATOR_API }}
ANDROID_EMULATOR_ARCH: ${{ env.ANDROID_EMULATOR_ARCH }}
screenshots-iphone:
name: Screenshots (iPhone)
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: Set up Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest-stable
- uses: actions/checkout@v5
- name: iPhone Screenshot Workflow
uses: ./.github/actions/screenshot-iphone
with:
IPHONE_DEVICE_MODEL: ${{ env.IPHONE_DEVICE_MODEL }}
screenshots-ipad:
name: Screenshots (iPad)
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: Set up Xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest-stable
- uses: actions/checkout@v5
- name: iPad Screenshot Workflow
uses: ./.github/actions/screenshot-ipad
with:
IPAD_DEVICE_MODEL: ${{ env.IPAD_DEVICE_MODEL }}
macos:
name: macOS Flutter Build
needs: common
runs-on: macos-latest
steps:
- uses: actions/checkout@v5
- name: macOS Workflow
uses: ./.github/actions/macos
windows:
name: Windows Flutter Build
needs: common
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- name: Windows Workflow
uses: ./.github/actions/windows
debian:
name: Debian Flutter Build
needs: common
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Debian Workflow
uses: ./.github/actions/debian