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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
jobs:
build_and_test:
macos:
xcode: 15.4.0
xcode: 16.0
steps:
- checkout
- run:
name: Checkout submodules
command: git submodule update --init --recursive --depth 1
- run:
name: Build Loop
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5' build | xcpretty
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'name=iPhone 16' build | xcpretty
- run:
name: Run Tests
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5' test | xcpretty
command: set -o pipefail && time xcodebuild -workspace LoopWorkspace.xcworkspace -scheme 'LoopWorkspace' -destination 'name=iPhone 16' test | xcpretty
workflows:
version: 2
build_and_test:
Expand Down
2 changes: 1 addition & 1 deletion CGMBLEKit
2 changes: 1 addition & 1 deletion Loop
Submodule Loop updated 318 files
2 changes: 1 addition & 1 deletion LoopKit
Submodule LoopKit updated 273 files
2 changes: 1 addition & 1 deletion LoopSupport
14 changes: 11 additions & 3 deletions LoopWorkspace.xcworkspace/xcshareddata/swiftpm/Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Scripts/sync.swift
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ for project in projects {
try await repository.checkout(revspec: syncBranch)

// Merge changes from tidepool to diy
print("Starting merge for \(project.project)")
try await repository.merge(revisionSpecification: "\(incomingRemote)/\(project.branch)", signature: signature)

let originTree = try repository.lookupTree(for: "origin/\(project.branch)")
Expand Down