Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 2 additions & 4 deletions .github/workflows/analyze.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,12 @@ jobs:
with:
path: /home/linuxbrew/.linuxbrew
key: ${{ runner.os }}-linuxbrew
- name: Install swift-format 600.0.0
- name: Install swift-format 601.0.0
if: steps.cache.outputs.cache-hit != 'true'
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-core/402e262f48947bad849ea7793752ff16b7038406/Formula/s/swift-format.rb
echo 'brew "swift-format.rb"' > Brewfile
brew bundle
brew install swift-format
- name: Save Cache
uses: actions/cache/save@v4
if: steps.cache.outputs.cache-hit != 'true'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test-and-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ jobs:
key: ${{ runner.os }}-pods-${{ hashFiles('**/*.podspec') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Select XCode 16.2
run: sudo xcode-select -s '/Applications/Xcode_16.2.0.app/Contents/Developer'
- name: Select XCode 16.4
run: sudo xcode-select -s '/Applications/Xcode_16.4.0.app/Contents/Developer'
- name: Generate necessary files with flutter build
working-directory: ${{ env.working_directory }}
run: flutter build ios --config-only
- name: "Run iOS native unit tests"
run: TEST_DEVICE='iPhone 16 Pro' TEST_OS='18.2' melos run test:ios
run: TEST_DEVICE='iPhone 16 Pro' TEST_OS='18.5' melos run test:ios
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -203,8 +203,8 @@ jobs:
uses: actions/download-artifact@v4
with:
name: ${{ runner.os }}-build-artifact
- name: Select XCode 16.2
run: sudo xcode-select -s '/Applications/Xcode_16.2.0.app/Contents/Developer'
- name: Select XCode 16.4
run: sudo xcode-select -s '/Applications/Xcode_16.4.0.app/Contents/Developer'
- name: "Run build for iOS"
run: melos run flutter-build-ios
- name: Upload build artifact
Expand Down Expand Up @@ -331,8 +331,8 @@ jobs:
flutter-version: "3.32.x"
channel: "stable"
cache: true
- name: Select XCode 16.2
run: sudo xcode-select -s '/Applications/Xcode_16.2.0.app/Contents/Developer'
- name: Select XCode 16.4
run: sudo xcode-select -s '/Applications/Xcode_16.4.0.app/Contents/Developer'
- name: Start iOS simulator
run: |
SIMULATOR_NAME="iPhone 16 Pro"
Expand Down
Loading