Skip to content
Open
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
11 changes: 8 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
jobs:
build_and_test:
macos:
xcode: 16.4
xcode: 26.4
steps:
- checkout
- run:
name: Checkout submodules
command: git submodule update --init --recursive --depth 1
- run:
name: Install xcbeautify
command: brew list xcbeautify >/dev/null 2>&1 || brew install xcbeautify
- run:
name: Build Loop
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.5' build | xcpretty
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'platform=iOS Simulator,name=iPhone 17' build | xcbeautify
- run:
name: Run Tests
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.5' test | xcpretty
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'platform=iOS Simulator,name=iPhone 17' test | xcbeautify --report junit --report-path test-results/results.xml
- store_test_results:
path: test-results
workflows:
version: 2
build_and_test:
Expand Down
2 changes: 1 addition & 1 deletion G7SensorKit
2 changes: 1 addition & 1 deletion LogglyService
2 changes: 1 addition & 1 deletion LoopOnboarding
2 changes: 1 addition & 1 deletion NightscoutRemoteCGM
2 changes: 1 addition & 1 deletion RileyLinkKit
2 changes: 1 addition & 1 deletion Scripts/manual_cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ for project in ${PROJECTS}; do
echo " already on $TRANSLATION_BRANCH, take no action"
elif [ -n "$(git branch --list "$TRANSLATION_BRANCH")" ]; then
echo " Local branch '$TRANSLATION_BRANCH' exists, deleting it."
git branch -D "${TRANSLATION_BRANCH}"
git branch -D ${TRANSLATION_BRANCH}
else
echo " no branch named $TRANSLATION_BRANCH exists, take no action"
fi
Expand Down
2 changes: 1 addition & 1 deletion TidepoolService
2 changes: 1 addition & 1 deletion VersionOverride.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

// Version [for DIY Loop]
// configure the version number in LoopWorkspace
LOOP_MARKETING_VERSION = 3.14.4
LOOP_MARKETING_VERSION = 3.14.5
CURRENT_PROJECT_VERSION = 57
2 changes: 1 addition & 1 deletion dexcom-share-client-swift