Branch: 321-bushelxpc-provisioning-profile
Issue: BushelXPC.xpc codesign fails with errSecInternalComponent during CI archive builds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Created by https://www.toptal.com/developers/gitignore/api/macos | |
| # Edit at https://www.toptal.com/developers/gitignore?templates=macos | |
| ### macOS ### | |
| # General | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Icon must end with two \r |
A comprehensive guide to organizing and writing tests with Apple's Swift Testing framework.
What you'll find here:
- Hierarchical test organization patterns for scaling your test suite
- Naming conventions and best practices that prevent common pitfalls
- Quick reference cheat sheet for daily use
- Complete Swift Testing API reference
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to clean up old 26.0 beta simulator runtimes | |
| # Keeps only the latest build version for each platform | |
| # Colors for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| YELLOW='\033[1;33m' | |
| BLUE='\033[0;34m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Use Ubuntu 24.04 as the base image | |
| FROM ubuntu:24.04 | |
| # Set environment variables to avoid interactive prompts | |
| ENV DEBIAN_FRONTEND=noninteractive | |
| ENV LANG=C.UTF-8 | |
| # Install system dependencies | |
| RUN apt-get update && apt-get install -y \ | |
| curl \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo dd if=/dev/zero of=/swapfile bs=1M count=4096 | |
| sudo chmod 600 /swapfile | |
| sudo mkswap /swapfile | |
| sudo swapon /swapfile | |
| # Add to /etc/fstab to make permanent | |
| echo '/swapfile swap swap defaults 0 0' | sudo tee -a /etc/fstab | |
| sudo yum update -y && sudo yum install docker -y && sudo yum install git -y && sudo yum install libicu -y && | |
| sudo systemctl start docker | |
| sudo systemctl enable docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Check if a filename was provided | |
| if [ $# -ne 1 ]; then | |
| echo "Usage: $0 <filename>" | |
| exit 1 | |
| fi | |
| filename=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public protocol Database: Sendable { | |
| func delete<T: PersistentModel>( | |
| where predicate: Predicate<T>? | |
| ) async throws | |
| func insert(_ closuer: @Sendable @escaping () -> some PersistentModel) async | |
| func fetch<T, U : Sendable>( | |
| _ selectDescriptor: @escaping @Sendable () -> FetchDescriptor<T>, | |
| with closure: @escaping @Sendable ([T]) throws -> U |
NewerOlder