Skip to content

fix: build ios archive was missing #2602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion .github/workflows/testflight-for-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,41 @@ jobs:
bundle install
bundle info fastlane

- name: Install FFI bindings
run: just deps-gen --force

- name: Install ios dependencies
run: cargo install cargo-lipo --force

- name: Set rustup targets
run: rustup target add aarch64-apple-ios x86_64-apple-ios

- name: Generate FFI bindings
run: just gen

- name: Build iOS Rust lib in release mode
run: just ios-release

- name: Parse version from pubspec.yaml
id: version
uses: jbutcher5/[email protected]
with:
file: "mobile/pubspec.yaml"
key-path: '["version"]'

- name: Build iOS Archive
id: build-ios
run: |
NETWORK=$NETWORK just build-ipa-no-codesign
env:
ELECTRS_ENDPOINT: http://146.0.73.175:3003
COORDINATOR_P2P_ENDPOINT: 021eddb3062fddef2c24f16f6de55fbd78ab985b74b41858719def46321d4be7d0@146.0.73.175:9045
NETWORK: signet
COORDINATOR_PORT_HTTP: 80
ORACLE_ENDPOINT: http://146.0.73.175:8081
ORACLE_PUBKEY: 5d12d79f575b8d99523797c46441c0549eb0defb6195fe8a080000cbe3ab3859
MEME_ENDPOINT: http://api.10101.finance/memes/

- name: Put for beta testing app for review
env:
# secrets
Expand All @@ -69,4 +104,3 @@ jobs:
- name: Print fastlane gym logs
if: always()
run: cat /Users/runner/Library/Logs/gym/10101*.log

Loading