Skip to content

Commit

Permalink
fix: fixed xcode sdk install (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanbourdais authored Apr 10, 2023
1 parent fa0ac2b commit c5d0c4f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ filters: &filters
jobs:
integration-test-macos:
macos:
xcode: 12.5.1
xcode: 14.2.0
steps:
- checkout
- flutter/install_sdk_and_pub:
Expand All @@ -18,6 +18,9 @@ jobs:
app-dir: ./sample
- flutter/install_ios_gem:
app-dir: ./sample
- run:
name: 'check that the sdk is installed properly'
command: cd sample && flutter doctor && rbenv version
integration-test-linux:
executor:
name: android/android-machine
Expand All @@ -31,6 +34,9 @@ jobs:
app-dir: ./sample
- flutter/install_android_gem:
app-dir: ./sample
- run:
name: 'check that the sdk is installed properly'
command: cd sample && flutter doctor && rvm version
workflows:
test-deploy:
jobs:
Expand Down
3 changes: 2 additions & 1 deletion src/scripts/install-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ if [ ! -d "$INSTALL_LOCATION/flutter" ]; then
fi
fi

echo "export PATH=$INSTALL_LOCATION/flutter/bin:$PATH" >> "$BASH_ENV"
echo "export PATH=$INSTALL_LOCATION/flutter/bin:\$PATH" >> "$BASH_ENV"

# shellcheck source=/dev/null
source "$BASH_ENV"
which flutter

0 comments on commit c5d0c4f

Please sign in to comment.