-
Notifications
You must be signed in to change notification settings - Fork 11
133 lines (110 loc) · 5.33 KB
/
build-sample-apps.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: Build sample apps
on:
push:
workflow_dispatch: # allow manual run
concurrency: # cancel previous workflow run if one exists.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
XCODE_VERSION: "15.3"
jobs:
build-ios-sample-apps:
runs-on: macos-14
name: Building sample app ${{ matrix.sample-app }}
strategy:
fail-fast: false # if one sample app fails to build, let the other sample apps continue to build and not cancel them.
matrix: # Use a matrix allowing us to build multiple apps in parallel. Just add an entry to the matrix and it will build!
sample-app:
# List all sample apps you want to have compiled.
# List item is name of directory inside of "apps" directory for the corresponding app to compile.
- "amiapp_flutter"
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-flutter
- name: Install CLI tools used in CI script
shell: bash
run: |
brew install sd # used in CI script as an easier to use sed CLI. Replaces text in files.
brew install xcbeautify # used by fastlane for output
- name: Change working directory to apps/${{ matrix.sample-app }}
run: echo "Changing directory"
working-directory: "apps/${{ matrix.sample-app }}"
- name: Read Ruby Version
id: read_ruby_version
run: |
echo "RUBY_VERSION=$(cat .ruby-version)" >> $GITHUB_ENV
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true # cache tools to make builds faster in future
- name: Print Ruby Version
run: ruby -v
- name: Print Bundler Version
run: bundler -v
- name: Install Ruby dependencies
run: bundle install
- name: Generate New Version
id: generate_version
uses: maierj/fastlane-action@v3.1.0
with:
lane: "generate_new_version"
arguments: |
branch_name=${{ github.ref_name }}
pull_request_number=${{ github.event.pull_request.number }}
env:
NEW_VERSION_NAME: ${{ steps.generate_version.outputs.NEW_VERSION_NAME }}
NEW_VERSION_CODE: ${{ steps.generate_version.outputs.NEW_VERSION_CODE }}
- name: Update Flutter SDK Version
uses: maierj/fastlane-action@v3.1.0
with:
lane: "update_flutter_sdk_version"
arguments: |
version_name=${{ steps.generate_version.outputs.NEW_VERSION_NAME }}
version_code=${{ steps.generate_version.outputs.NEW_VERSION_CODE }}
- name: Update Sample App Version
uses: maierj/fastlane-action@v3.1.0
with:
lane: "update_flutter_app_version"
arguments: |
version_name=${{ steps.generate_version.outputs.NEW_VERSION_NAME }}
version_code=${{ steps.generate_version.outputs.NEW_VERSION_CODE }}
- name: Install flutter dependencies
run: flutter pub get
- name: Setup workspace credentials in flutter environment files
run: |
cp "apps/${{ matrix.sample-app }}/.env.example" "apps/${{ matrix.sample-app }}/.env"
sd "siteid" "${{ secrets[format('CUSTOMERIO_{0}_WORKSPACE_SITE_ID', matrix.sample-app)] }}" "apps/${{ matrix.sample-app }}/.env"
sd "apikey" "${{ secrets[format('CUSTOMERIO_{0}_WORKSPACE_API_KEY', matrix.sample-app)] }}" "apps/${{ matrix.sample-app }}/.env"
- name: Setup workspace credentials in iOS environment files
run: |
cp "apps/${{ matrix.sample-app }}/ios/Env.swift.example" "apps/${{ matrix.sample-app }}/ios/Env.swift"
sd "siteid" "${{ secrets[format('CUSTOMERIO_{0}_WORKSPACE_SITE_ID', matrix.sample-app)] }}" "apps/${{ matrix.sample-app }}/ios/Env.swift"
sd "apiKey" "${{ secrets[format('CUSTOMERIO_{0}_WORKSPACE_API_KEY', matrix.sample-app)] }}" "apps/${{ matrix.sample-app }}/ios/Env.swift"
- name: Run iOS setup steps to be able to build sample apps
uses: ./.github/actions/setup-ios
with:
xcode-version: ${{ env.XCODE_VERSION }}
gemfile-directory: "apps/${{ matrix.sample-app }}"
- name: pod install
run: pod install --project-directory=ios
- name: Run Android setup steps to be able to build sample apps
uses: ./.github/actions/setup-android
with:
subdirectory: "apps/${{ matrix.sample-app }}/android"
- name: Build Android app via Fastlane
uses: maierj/fastlane-action@v3.1.0
with:
lane: "android build"
subdirectory: "apps/${{ matrix.sample-app }}/android"
env:
GOOGLE_CLOUD_MATCH_READONLY_SERVICE_ACCOUNT_B64: ${{ secrets.GOOGLE_CLOUD_MATCH_READONLY_SERVICE_ACCOUNT_B64 }}
FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64: ${{ secrets.FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64 }}
- name: Build iOS app via Fastlane
uses: maierj/fastlane-action@v3.1.0
with:
lane: "ios build"
subdirectory: "apps/${{ matrix.sample-app }}/ios"
env:
GOOGLE_CLOUD_MATCH_READONLY_SERVICE_ACCOUNT_B64: ${{ secrets.GOOGLE_CLOUD_MATCH_READONLY_SERVICE_ACCOUNT_B64 }}
FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64: ${{ secrets.FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64 }}