Compare commits

...

15 Commits

Author SHA1 Message Date
Ian VanSchooten 755908a189
Merge 71e6734865 into 494f071ed5 2024-10-16 14:36:33 -04:00
Ian VanSchooten 71e6734865 Remove checkBuild lane 2024-10-16 09:02:50 -04:00
Ian VanSchooten 5c0f98ad8a Just manually xcodebuild 2024-10-16 09:02:50 -04:00
Ian VanSchooten a88c845850 Remove setup_ci 2024-10-16 09:02:50 -04:00
Ian VanSchooten b82ef08fd1 Skip signing 2024-10-16 09:02:50 -04:00
Ian VanSchooten 0e9dae0a9c Build ios debug app, do not sign 2024-10-16 09:02:50 -04:00
Ian VanSchooten 9d5cda7810 Fix rebase error 2024-10-16 09:02:50 -04:00
Ian VanSchooten c886cfcf5b Rename workflow 2024-10-16 09:02:50 -04:00
Ian VanSchooten 8111303d91 Avoid incrementing version number 2024-10-16 09:02:50 -04:00
Ian VanSchooten da64471751 Use fastlane to build 2024-10-16 09:02:50 -04:00
Ian VanSchooten 3e58c41a0e Add fastlane match token 2024-10-16 09:02:50 -04:00
Ian VanSchooten a4703d1403 Add ios build step to ci 2024-10-16 09:02:50 -04:00
Ian VanSchooten 3cb7d84a7b Specify androidapi for gomobile 2024-10-16 09:02:50 -04:00
Ian VanSchooten c91f622e4e Add build workflow 2024-10-16 09:02:50 -04:00
Ian VanSchooten b8bcf32af4 Simplify/fix dart formatting in CI 2024-10-16 09:02:50 -04:00
3 changed files with 76 additions and 2 deletions

74
.github/workflows/smoke.yml vendored Normal file
View File

@ -0,0 +1,74 @@
# This workflow builds the iOS and Android apps, just to check they build without error
name: Smoke build
on:
push:
branches:
- main
pull_request:
jobs:
build-android:
name: Android
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
- name: Build Android debug
run: flutter build appbundle --debug
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
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"

View File

@ -9,7 +9,7 @@ clean:
mobileNebula.aar: *.go go.sum mobileNebula.aar: *.go go.sum
go get -d golang.org/x/mobile/cmd/gomobile go get -d golang.org/x/mobile/cmd/gomobile
gomobile bind -trimpath -v --target=android -androidapi 26 gomobile bind -trimpath -v --target=android -androidapi=26
MobileNebula.xcframework: *.go go.sum MobileNebula.xcframework: *.go go.sum
go get -d golang.org/x/mobile/cmd/gomobile go get -d golang.org/x/mobile/cmd/gomobile