2024-10-01 20:10:14 +00:00
|
|
|
# This workflow builds the iOS and Android apps, just to check they build without error
|
|
|
|
|
|
|
|
name: Smoke build
|
2024-09-27 19:51:49 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2024-10-01 17:41:02 +00:00
|
|
|
build-android:
|
|
|
|
name: Android
|
2024-09-27 19:51:49 +00:00
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Go 1.22
|
|
|
|
uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: "1.22"
|
|
|
|
|
|
|
|
- uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: 'zulu'
|
|
|
|
java-version: '17'
|
|
|
|
|
|
|
|
- name: Install flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
flutter-version: '3.24.1'
|
|
|
|
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: install dependencies
|
|
|
|
env:
|
|
|
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
|
|
|
run: |
|
|
|
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
|
|
|
gomobile init
|
|
|
|
flutter pub get
|
|
|
|
touch env.sh
|
|
|
|
|
2024-10-01 17:41:02 +00:00
|
|
|
- name: Build Android debug
|
2024-09-27 19:51:49 +00:00
|
|
|
run: flutter build appbundle --debug
|
2024-10-01 17:41:02 +00:00
|
|
|
|
|
|
|
build-ios:
|
|
|
|
name: iOS
|
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Set up Go 1.22
|
|
|
|
uses: actions/setup-go@v4
|
|
|
|
with:
|
|
|
|
go-version: "1.22"
|
|
|
|
|
|
|
|
- name: Install flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
flutter-version: '3.24.1'
|
|
|
|
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: install dependencies
|
|
|
|
run: |
|
|
|
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
|
|
|
gomobile init
|
|
|
|
flutter pub get
|
|
|
|
touch env.sh
|
|
|
|
|
|
|
|
- name: Build iOS
|
|
|
|
run: |
|
|
|
|
cd ios
|
|
|
|
pod install
|
2024-10-15 16:21:43 +00:00
|
|
|
xcodebuild -workspace Runner.xcworkspace -scheme Runner -configuration Release clean archive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -archivePath "build/MobileNebula.xcarchive"
|