Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
19 changes: 16 additions & 3 deletions .github/workflows/mobile-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,14 @@ jobs:
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.4"
xcode-version: "16.2"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes incorrect upgrade from previous pr


- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: false
working-directory: ./app

- uses: actions/checkout@v4
- name: Cache Node Modules
Expand Down Expand Up @@ -183,10 +190,15 @@ jobs:
- name: Build Dependencies
run: yarn build:deps
working-directory: ./app
- name: Install Ruby Dependencies
run: |
echo "Installing Ruby dependencies..."
bundle config set --local path 'vendor/bundle'
bundle install --jobs 4 --retry 3
working-directory: ./app
- name: Install iOS Dependencies
run: |
echo "Installing iOS dependencies..."
cd app/ios

# Clean Pods directory if it's corrupted or empty
if [ ! -d "Pods" ] || [ -z "$(ls -A Pods 2>/dev/null)" ]; then
Expand Down Expand Up @@ -214,10 +226,10 @@ jobs:
fi

echo "✅ iOS dependencies installed successfully"
working-directory: ./app/ios
- name: Verify iOS Workspace
run: |
echo "Verifying iOS workspace setup..."
cd app/ios

if [ ! -f "OpenPassport.xcworkspace/contents.xcworkspacedata" ]; then
echo "❌ OpenPassport.xcworkspace is missing or corrupted"
Expand All @@ -230,6 +242,7 @@ jobs:
fi

echo "✅ iOS workspace is properly configured"
working-directory: ./app/ios
- name: Build iOS
run: yarn ios
working-directory: ./app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mobile-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
if: inputs.platform != 'android'
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.4"
xcode-version: "16.2"

- name: Cache Yarn dependencies
id: yarn-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mobile-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.4"
xcode-version: "16.2"
- name: Cache Node modules
uses: actions/cache@v4
with:
Expand Down
1 change: 1 addition & 0 deletions common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@
},
"devDependencies": {
"@types/js-sha1": "^0.6.3",
"@types/node": "^22.0.0",
"@types/node-forge": "^1.3.10",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4933,6 +4933,7 @@ __metadata:
"@openpassport/zk-kit-lean-imt": "npm:^0.0.6"
"@openpassport/zk-kit-smt": "npm:^0.0.1"
"@types/js-sha1": "npm:^0.6.3"
"@types/node": "npm:^22.0.0"
"@types/node-forge": "npm:^1.3.10"
"@typescript-eslint/eslint-plugin": "npm:^8.0.0"
"@typescript-eslint/parser": "npm:^8.0.0"
Expand Down
Loading