diff --git a/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift b/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift index 8da60a7..17a09db 100644 --- a/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift +++ b/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift @@ -154,11 +154,8 @@ struct EpisodeCell: View { updateProgress() } } -} - -private extension EpisodeCell { - var actionButtonsBackground: some View { + private var actionButtonsBackground: some View { HStack { Spacer() actionButtons @@ -166,7 +163,7 @@ private extension EpisodeCell { .zIndex(0) } - var episodeCellContent: some View { + private var episodeCellContent: some View { HStack { episodeThumbnail episodeInfo @@ -203,7 +200,7 @@ private extension EpisodeCell { .onTapGesture { handleTap() } } - var cellBackground: some View { + private var cellBackground: some View { RoundedRectangle(cornerRadius: 15) .fill(Color(UIColor.systemBackground)) .overlay( @@ -226,7 +223,7 @@ private extension EpisodeCell { ) } - var episodeThumbnail: some View { + private var episodeThumbnail: some View { ZStack { AsyncImageView( url: episodeImageUrl.isEmpty ? defaultBannerImage : episodeImageUrl, @@ -241,7 +238,7 @@ private extension EpisodeCell { } } - var episodeInfo: some View { + private var episodeInfo: some View { VStack(alignment: .leading) { HStack(spacing: 8) { Text("Episode \(episodeID + 1)") @@ -273,13 +270,13 @@ private extension EpisodeCell { } } - var downloadedIndicator: some View { + private var downloadedIndicator: some View { Image(systemName: "externaldrive.fill.badge.checkmark") .foregroundColor(.accentColor) .font(.system(size: 18)) } - var contextMenuContent: some View { + private var contextMenuContent: some View { Group { if progress <= 0.9 { Button(action: markAsWatched) { @@ -305,7 +302,7 @@ private extension EpisodeCell { } } - var actionButtons: some View { + private var actionButtons: some View { HStack(spacing: 8) { ActionButton( icon: "arrow.down.circle", @@ -351,11 +348,8 @@ private extension EpisodeCell { } .padding(.horizontal, 8) } -} - -private extension EpisodeCell { - enum DragState { + private enum DragState { case inactive case pressing case dragging(translation: CGSize) @@ -388,7 +382,7 @@ private extension EpisodeCell { } } - func handleDragChanged(_ value: DragGesture.Value) { + private func handleDragChanged(_ value: DragGesture.Value) { let translation = value.translation let velocity = value.velocity @@ -417,7 +411,7 @@ private extension EpisodeCell { } } - func handleDragEnded(_ value: DragGesture.Value) { + private func handleDragEnded(_ value: DragGesture.Value) { let translation = value.translation let velocity = value.velocity @@ -449,7 +443,7 @@ private extension EpisodeCell { } } - func handleTap() { + private func handleTap() { if isShowingActions { withAnimation(.spring(response: 0.3, dampingFraction: 0.8)) { swipeOffset = 0 @@ -463,7 +457,7 @@ private extension EpisodeCell { } } - func calculateMaxSwipeDistance() -> CGFloat { + private func calculateMaxSwipeDistance() -> CGFloat { var buttonCount = 1 if progress <= 0.9 { buttonCount += 1 } @@ -477,11 +471,8 @@ private extension EpisodeCell { return swipeDistance } -} - -private extension EpisodeCell { - func closeActionsAndPerform(action: @escaping () -> Void) { + private func closeActionsAndPerform(action: @escaping () -> Void) { withAnimation(.spring(response: 0.4, dampingFraction: 0.8)) { isShowingActions = false swipeOffset = 0 @@ -492,7 +483,7 @@ private extension EpisodeCell { } } - func markAsWatched() { + private func markAsWatched() { let defaults = UserDefaults.standard let totalTime = 1000.0 defaults.set(totalTime, forKey: "lastPlayedTime_\(episode)") @@ -509,30 +500,30 @@ private extension EpisodeCell { ) { result in switch result { case .success: - Logger.shared.log("AniList sync: marked ep \(epNum) as \(newStatus)", type: "General") + print("AniList sync: marked ep \(epNum) as \(newStatus)") case .failure(let err): - Logger.shared.log("AniList sync failed: \(err.localizedDescription)", type: "Error") + print("AniList sync failed: \(err.localizedDescription)") } } } } - func resetProgress() { + private func resetProgress() { let userDefaults = UserDefaults.standard userDefaults.set(0.0, forKey: "lastPlayedTime_\(episode)") userDefaults.set(0.0, forKey: "totalTime_\(episode)") updateProgress() } - func updateProgress() { + private func updateProgress() { let userDefaults = UserDefaults.standard let lastPlayedTime = userDefaults.double(forKey: "lastPlayedTime_\(episode)") let totalTime = userDefaults.double(forKey: "totalTime_\(episode)") currentProgress = totalTime > 0 ? min(lastPlayedTime / totalTime, 1.0) : 0 } - func updateDownloadStatus() { + private func updateDownloadStatus() { let newStatus = jsController.isEpisodeDownloadedOrInProgress( showTitle: parentTitle, episodeNumber: episodeID + 1 @@ -542,38 +533,33 @@ private extension EpisodeCell { downloadStatus = newStatus } } -} - -private extension EpisodeCell { - func setupOnAppear() { + + private func setupOnAppear() { updateProgress() updateDownloadStatus() DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) { if UserDefaults.standard.string(forKey: "metadataProviders") ?? "TMDB" == "TMDB" { - fetchTMDBEpisodeImage() + self.fetchTMDBEpisodeImage() } else { - fetchAnimeEpisodeDetails() + self.fetchAnimeEpisodeDetails() } // Fetch filler info using Jikan API fetchJikanFillerInfo() } } - func handleItemIDChange() { + private func handleItemIDChange() { isLoading = true retryAttempts = 0 fetchEpisodeDetails() } - func fetchEpisodeDetails() { + private func fetchEpisodeDetails() { fetchAnimeEpisodeDetails() } -} - -private extension EpisodeCell { - func downloadEpisode() { + private func downloadEpisode() { updateDownloadStatus() guard case .notDownloaded = downloadStatus, !isDownloading else { @@ -598,7 +584,7 @@ private extension EpisodeCell { } } - func handleAlreadyDownloadedOrInProgress() { + private func handleAlreadyDownloadedOrInProgress() { switch downloadStatus { case .downloaded: DropManager.shared.info("Episode \(episodeID + 1) is already downloaded") @@ -609,7 +595,7 @@ private extension EpisodeCell { } } - func tryNextDownloadMethod(methodIndex: Int, downloadID: UUID, softsub: Bool) { + private func tryNextDownloadMethod(methodIndex: Int, downloadID: UUID, softsub: Bool) { guard isDownloading else { return } switch methodIndex { @@ -642,7 +628,7 @@ private extension EpisodeCell { } } - func handleDownloadResult( + private func handleDownloadResult( _ result: (streams: [String]?, subtitles: [String]?, sources: [[String: Any]]?), downloadID: UUID, methodIndex: Int, @@ -681,7 +667,7 @@ private extension EpisodeCell { tryNextDownloadMethod(methodIndex: methodIndex + 1, downloadID: downloadID, softsub: softsub) } - func startActualDownload(url: URL, streamUrl: String, downloadID: UUID, subtitleURL: URL? = nil) { + private func startActualDownload(url: URL, streamUrl: String, downloadID: UUID, subtitleURL: URL? = nil) { let headers = createDownloadHeaders(for: url) let episodeThumbnailURL = URL(string: episodeImageUrl.isEmpty ? defaultBannerImage : episodeImageUrl) let showPosterImageURL = URL(string: showPosterURL ?? defaultBannerImage) @@ -704,7 +690,7 @@ private extension EpisodeCell { showPosterURL: showPosterImageURL ) { success, message in if success { - Logger.shared.log("Started download for Episode \(self.episodeID + 1): \(self.episode)", type: "Download") + print("Started download for Episode \(self.episodeID + 1): \(self.episode)") AnalyticsManager.shared.sendEvent( event: "download", additionalData: ["episode": self.episodeID + 1, "url": streamUrl] @@ -716,7 +702,7 @@ private extension EpisodeCell { } } - func createDownloadHeaders(for url: URL) -> [String: String] { + private func createDownloadHeaders(for url: URL) -> [String: String] { if !module.metadata.baseUrl.isEmpty && !module.metadata.baseUrl.contains("undefined") { return [ "Origin": module.metadata.baseUrl, @@ -746,11 +732,8 @@ private extension EpisodeCell { return [:] } } -} - -private extension EpisodeCell { - func showDownloadStreamSelectionAlert(streams: [Any], downloadID: UUID, subtitleURL: String? = nil) { + private func showDownloadStreamSelectionAlert(streams: [Any], downloadID: UUID, subtitleURL: String? = nil) { DispatchQueue.main.async { let alert = UIAlertController( title: "Select Download Server", @@ -768,7 +751,7 @@ private extension EpisodeCell { } } - func addStreamActions(to alert: UIAlertController, streams: [Any], downloadID: UUID, subtitleURL: String?) { + private func addStreamActions(to alert: UIAlertController, streams: [Any], downloadID: UUID, subtitleURL: String?) { var index = 0 var streamIndex = 1 @@ -791,7 +774,7 @@ private extension EpisodeCell { } } - func parseStreamInfo(streams: [Any], index: Int, streamIndex: Int) -> (title: String, streamUrl: String, newIndex: Int) { + private func parseStreamInfo(streams: [Any], index: Int, streamIndex: Int) -> (title: String, streamUrl: String, newIndex: Int) { if let streams = streams as? [String] { if index + 1 < streams.count && !streams[index].lowercased().contains("http") { return (streams[index], streams[index + 1], index + 2) @@ -807,7 +790,7 @@ private extension EpisodeCell { return ("Server \(streamIndex)", "", index + 1) } - func presentAlert(_ alert: UIAlertController) { + private func presentAlert(_ alert: UIAlertController) { guard let windowScene = UIApplication.shared.connectedScenes.first as? UIWindowScene, let window = windowScene.windows.first, let rootVC = window.rootViewController else { return } @@ -828,7 +811,7 @@ private extension EpisodeCell { findTopViewController(rootVC).present(alert, animated: true) } - func findTopViewController(_ controller: UIViewController) -> UIViewController { + private func findTopViewController(_ controller: UIViewController) -> UIViewController { if let navigationController = controller as? UINavigationController { return findTopViewController(navigationController.visibleViewController!) } @@ -842,11 +825,8 @@ private extension EpisodeCell { } return controller } -} - -private extension EpisodeCell { - func fetchAnimeEpisodeDetails() { + private func fetchAnimeEpisodeDetails() { if let fetchMeta = UserDefaults.standard.object(forKey: "fetchEpisodeMetadata"), !(fetchMeta as? Bool ?? true) { DispatchQueue.main.async { @@ -857,17 +837,17 @@ private extension EpisodeCell { } guard let url = URL(string: "https://api.ani.zip/mappings?anilist_id=\(itemID)") else { isLoading = false - Logger.shared.log("Invalid URL for itemID: \(itemID)", type: "Error") + print("Invalid URL for itemID: \(itemID)") return } if retryAttempts > 0 { - Logger.shared.log("Retrying episode details fetch (attempt \(retryAttempts)/\(maxRetryAttempts))", type: "Debug") + print("Retrying episode details fetch (attempt \(retryAttempts)/\(maxRetryAttempts))") } URLSession.custom.dataTask(with: url) { data, response, error in if let error = error { - Logger.shared.log("Failed to fetch anime episode details: \(error)", type: "Error") + print("Failed to fetch anime episode details: \(error)") self.handleFetchFailure(error: error) return } @@ -881,7 +861,7 @@ private extension EpisodeCell { }.resume() } - func processAnimeEpisodeData(_ data: Data) { + private func processAnimeEpisodeData(_ data: Data) { do { let jsonObject = try JSONSerialization.jsonObject(with: data, options: []) guard let json = jsonObject as? [String: Any], @@ -892,7 +872,7 @@ private extension EpisodeCell { let episodeKey = "\(episodeID + 1)" guard let episodeDetails = episodes[episodeKey] as? [String: Any] else { - Logger.shared.log("Episode \(episodeKey) not found in response", type: "Error") + print("Episode \(episodeKey) not found in response") DispatchQueue.main.async { self.isLoading = false self.retryAttempts = 0 @@ -903,7 +883,7 @@ private extension EpisodeCell { updateEpisodeMetadata(from: episodeDetails) } catch { - Logger.shared.log("JSON parsing error: \(error.localizedDescription)", type: "Error") + print("JSON parsing error: \(error.localizedDescription)") DispatchQueue.main.async { self.isLoading = false self.retryAttempts = 0 @@ -911,7 +891,7 @@ private extension EpisodeCell { } } - func updateEpisodeMetadata(from episodeDetails: [String: Any]) { + private func updateEpisodeMetadata(from episodeDetails: [String: Any]) { let title = episodeDetails["title"] as? [String: String] ?? [:] let image = episodeDetails["image"] as? String ?? "" @@ -930,7 +910,7 @@ private extension EpisodeCell { } } - func fetchTMDBEpisodeImage() { + private func fetchTMDBEpisodeImage() { if let fetchMeta = UserDefaults.standard.object(forKey: "fetchEpisodeMetadata"), !(fetchMeta as? Bool ?? true) { DispatchQueue.main.async { @@ -968,7 +948,7 @@ private extension EpisodeCell { } } } catch { - Logger.shared.log("Failed to parse TMDB episode details: \(error.localizedDescription)", type: "Error") + print("Failed to parse TMDB episode details: \(error.localizedDescription)") DispatchQueue.main.async { self.isLoading = false } @@ -1052,6 +1032,8 @@ private extension EpisodeCell { do { let response = try JSONDecoder().decode(JikanResponse.self, from: data) completion(response.data) + let response = try JSONDecoder().decode(JikanResponse.self, from: data) + completion(response.data) } catch { Logger.shared.log("Failed to parse Jikan response: \(error)", type: "Error") completion(nil) @@ -1086,13 +1068,13 @@ private extension EpisodeCell { self.retryAttempts += 1 let backoffDelay = self.initialBackoffDelay * pow(2.0, Double(self.retryAttempts - 1)) - Logger.shared.log("Will retry episode details fetch in \(backoffDelay) seconds", type: "Debug") + print("Will retry episode details fetch in \(backoffDelay) seconds") DispatchQueue.main.asyncAfter(deadline: .now() + backoffDelay) { self.fetchAnimeEpisodeDetails() } } else { - Logger.shared.log("Failed to fetch episode details after \(self.maxRetryAttempts) attempts", type: "Error") + print("Failed to fetch episode details after \(self.maxRetryAttempts) attempts") self.isLoading = false self.retryAttempts = 0 } @@ -1151,9 +1133,6 @@ private struct AsyncImageView: View { .cornerRadius(8) } else if state.error != nil { placeholderView - .onAppear { - Logger.shared.log("Failed to load episode image: \(state.error?.localizedDescription ?? "Unknown error")", type: "Error") - } } else { placeholderView } diff --git a/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift b/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift index dc45efb..6fd1438 100644 --- a/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift +++ b/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift @@ -53,6 +53,7 @@ struct AnilistMatchPopupView: View { let result = results[index] Button(action: { if let id = result["id"] as? Int { + let malID = result["mal_id"] as? Int? let title = result["title"] as? String ?? seriesTitle let malId = result["mal_id"] as? Int Logger.shared.log("Selected AniList ID: \(id), MAL ID: \(malId?.description ?? "nil")", type: "AnilistMatch") @@ -179,6 +180,7 @@ struct AnilistMatchPopupView: View { media(search: "\(seriesTitle)", type: ANIME) { id idMal + idMal title { romaji english @@ -195,7 +197,9 @@ struct AnilistMatchPopupView: View { var request = URLRequest(url: url) request.httpMethod = "POST" request.setValue("application/json", forHTTPHeaderField: "Content-Type") - request.httpBody = try? JSONSerialization.data(withJSONObject: ["query": query]) + + let requestBody: [String: Any] = ["query": query] + request.httpBody = try? JSONSerialization.data(withJSONObject: requestBody) URLSession.shared.dataTask(with: request) { data, _, _ in DispatchQueue.main.async { @@ -211,6 +215,10 @@ struct AnilistMatchPopupView: View { results = mediaList.map { media in let titleInfo = media["title"] as? [String: Any] let cover = (media["coverImage"] as? [String: Any])?["large"] as? String + let malID = media["idMal"] as? Int + + print("Found AniList ID: \(media["id"] ?? "nil"), MAL ID: \(malID?.description ?? "nil")") + return [ "id": media["id"] ?? 0, "mal_id": media["idMal"] as? Int, // <-- MAL ID diff --git a/buildlogs.txt b/buildlogs.txt new file mode 100644 index 0000000..690a602 --- /dev/null +++ b/buildlogs.txt @@ -0,0 +1,1102 @@ +2025-08-16T21:02:18.6483130Z Current runner version: '2.327.1' +2025-08-16T21:02:18.6518610Z ##[group]Runner Image Provisioner +2025-08-16T21:02:18.6519170Z Hosted Compute Agent +2025-08-16T21:02:18.6519500Z Version: 20250812.370 +2025-08-16T21:02:18.6519870Z Commit: 4a2b2bf7520004e3e907c2150c8cabe342a3da32 +2025-08-16T21:02:18.6520290Z Build Date: 2025-08-12T16:08:14Z +2025-08-16T21:02:18.6520680Z ##[endgroup] +2025-08-16T21:02:18.6521000Z ##[group]Operating System +2025-08-16T21:02:18.6521340Z macOS +2025-08-16T21:02:18.6521620Z 15.5 +2025-08-16T21:02:18.6521910Z 24F74 +2025-08-16T21:02:18.6522180Z ##[endgroup] +2025-08-16T21:02:18.6522470Z ##[group]Runner Image +2025-08-16T21:02:18.6522790Z Image: macos-15-arm64 +2025-08-16T21:02:18.6523100Z Version: 20250811.2170 +2025-08-16T21:02:18.6523780Z Included Software: https://github.com/actions/runner-images/blob/macos-15-arm64/20250811.2170/images/macos/macos-15-arm64-Readme.md +2025-08-16T21:02:18.6524820Z Image Release: https://github.com/actions/runner-images/releases/tag/macos-15-arm64%2F20250811.2170 +2025-08-16T21:02:18.6525420Z ##[endgroup] +2025-08-16T21:02:18.6526970Z ##[group]GITHUB_TOKEN Permissions +2025-08-16T21:02:18.6528330Z Actions: write +2025-08-16T21:02:18.6528660Z Attestations: write +2025-08-16T21:02:18.6528960Z Checks: write +2025-08-16T21:02:18.6529250Z Contents: write +2025-08-16T21:02:18.6529660Z Deployments: write +2025-08-16T21:02:18.6529970Z Discussions: write +2025-08-16T21:02:18.6530270Z Issues: write +2025-08-16T21:02:18.6530570Z Metadata: read +2025-08-16T21:02:18.6530860Z Models: read +2025-08-16T21:02:18.6531160Z Packages: write +2025-08-16T21:02:18.6531460Z Pages: write +2025-08-16T21:02:18.6531770Z PullRequests: write +2025-08-16T21:02:18.6532100Z RepositoryProjects: write +2025-08-16T21:02:18.6532440Z SecurityEvents: write +2025-08-16T21:02:18.6532800Z Statuses: write +2025-08-16T21:02:18.6533100Z ##[endgroup] +2025-08-16T21:02:18.6534600Z Secret source: Actions +2025-08-16T21:02:18.6534990Z Prepare workflow directory +2025-08-16T21:02:18.6739570Z Prepare all required actions +2025-08-16T21:02:18.6832890Z Getting action download info +2025-08-16T21:02:19.0513000Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) +2025-08-16T21:02:20.2664830Z Download action repository 'maxim-lobanov/setup-xcode@v1' (SHA:60606e260d2fc5762a71e64e74b2174e8ea3c8bd) +2025-08-16T21:02:21.1644000Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) +2025-08-16T21:02:21.4386840Z Complete job name: Build IPA +2025-08-16T21:02:21.5352920Z ##[group]Run actions/checkout@v4 +2025-08-16T21:02:21.5353850Z with: +2025-08-16T21:02:21.5354380Z repository: scigward/Sora +2025-08-16T21:02:21.5355330Z token: *** +2025-08-16T21:02:21.5355840Z ssh-strict: true +2025-08-16T21:02:21.5356370Z ssh-user: git +2025-08-16T21:02:21.5356910Z persist-credentials: true +2025-08-16T21:02:21.5357520Z clean: true +2025-08-16T21:02:21.5358060Z sparse-checkout-cone-mode: true +2025-08-16T21:02:21.5358860Z fetch-depth: 1 +2025-08-16T21:02:21.5359400Z fetch-tags: false +2025-08-16T21:02:21.5359990Z show-progress: true +2025-08-16T21:02:21.5360570Z lfs: false +2025-08-16T21:02:21.5361120Z submodules: false +2025-08-16T21:02:21.5361690Z set-safe-directory: true +2025-08-16T21:02:21.5362480Z ##[endgroup] +2025-08-16T21:02:22.0691370Z Syncing repository: scigward/Sora +2025-08-16T21:02:22.0693540Z ##[group]Getting Git version info +2025-08-16T21:02:22.0694380Z Working directory is '/Users/runner/work/Sora/Sora' +2025-08-16T21:02:22.0695860Z [command]/opt/homebrew/bin/git version +2025-08-16T21:02:22.1375370Z git version 2.50.1 +2025-08-16T21:02:22.1422840Z ##[endgroup] +2025-08-16T21:02:22.1460740Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/76b3c7e3-7dd8-4e66-b7fc-272d268b441e/.gitconfig' +2025-08-16T21:02:22.1541910Z Temporarily overriding HOME='/Users/runner/work/_temp/76b3c7e3-7dd8-4e66-b7fc-272d268b441e' before making global git config changes +2025-08-16T21:02:22.1547050Z Adding repository directory to the temporary git global config as a safe directory +2025-08-16T21:02:22.1552820Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/Sora/Sora +2025-08-16T21:02:22.1882060Z Deleting the contents of '/Users/runner/work/Sora/Sora' +2025-08-16T21:02:22.1886810Z ##[group]Initializing the repository +2025-08-16T21:02:22.1889490Z [command]/opt/homebrew/bin/git init /Users/runner/work/Sora/Sora +2025-08-16T21:02:22.2209300Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-08-16T21:02:22.2212610Z hint: is subject to change. To configure the initial branch name to use in all +2025-08-16T21:02:22.2215530Z hint: of your new repositories, which will suppress this warning, call: +2025-08-16T21:02:22.2217680Z hint: +2025-08-16T21:02:22.2219200Z hint: git config --global init.defaultBranch +2025-08-16T21:02:22.2221190Z hint: +2025-08-16T21:02:22.2223060Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-08-16T21:02:22.2226080Z hint: 'development'. The just-created branch can be renamed via this command: +2025-08-16T21:02:22.2228450Z hint: +2025-08-16T21:02:22.2229900Z hint: git branch -m +2025-08-16T21:02:22.2232010Z hint: +2025-08-16T21:02:22.2232980Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-08-16T21:02:22.2235410Z Initialized empty Git repository in /Users/runner/work/Sora/Sora/.git/ +2025-08-16T21:02:22.2237930Z [command]/opt/homebrew/bin/git remote add origin https://github.com/scigward/Sora +2025-08-16T21:02:22.2372770Z ##[endgroup] +2025-08-16T21:02:22.2387630Z ##[group]Disabling automatic garbage collection +2025-08-16T21:02:22.2396820Z [command]/opt/homebrew/bin/git config --local gc.auto 0 +2025-08-16T21:02:22.2421390Z ##[endgroup] +2025-08-16T21:02:22.2438980Z ##[group]Setting up auth +2025-08-16T21:02:22.2451940Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-08-16T21:02:22.2560230Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-08-16T21:02:22.4137520Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-08-16T21:02:22.4242690Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-08-16T21:02:22.5191740Z [command]/opt/homebrew/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-08-16T21:02:22.5273440Z ##[endgroup] +2025-08-16T21:02:22.5275660Z ##[group]Fetching the repository +2025-08-16T21:02:22.5279320Z [command]/opt/homebrew/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d7479dbb732cb06983814fed1edf52a910854f45:refs/remotes/origin/dev +2025-08-16T21:02:23.8083640Z From https://github.com/scigward/Sora +2025-08-16T21:02:23.8235470Z * [new ref] d7479dbb732cb06983814fed1edf52a910854f45 -> origin/dev +2025-08-16T21:02:23.8625520Z ##[endgroup] +2025-08-16T21:02:23.8723870Z ##[group]Determining the checkout info +2025-08-16T21:02:23.8832830Z ##[endgroup] +2025-08-16T21:02:23.8932730Z [command]/opt/homebrew/bin/git sparse-checkout disable +2025-08-16T21:02:23.9115960Z [command]/opt/homebrew/bin/git config --local --unset-all extensions.worktreeConfig +2025-08-16T21:02:23.9138070Z ##[group]Checking out the ref +2025-08-16T21:02:23.9139700Z [command]/opt/homebrew/bin/git checkout --progress --force -B dev refs/remotes/origin/dev +2025-08-16T21:02:23.9755700Z Switched to a new branch 'dev' +2025-08-16T21:02:23.9768160Z branch 'dev' set up to track 'origin/dev'. +2025-08-16T21:02:23.9775880Z ##[endgroup] +2025-08-16T21:02:23.9956710Z [command]/opt/homebrew/bin/git log -1 --format=%H +2025-08-16T21:02:24.0005820Z d7479dbb732cb06983814fed1edf52a910854f45 +2025-08-16T21:02:24.0235420Z ##[group]Run maxim-lobanov/setup-xcode@v1 +2025-08-16T21:02:24.0235920Z with: +2025-08-16T21:02:24.0236100Z xcode-version: latest-stable +2025-08-16T21:02:24.0236290Z ##[endgroup] +2025-08-16T21:02:24.1405010Z Switching Xcode to version 'latest-stable'... +2025-08-16T21:02:24.2226340Z Xcode is set to 16.4.0 (16F6) +2025-08-16T21:02:24.2369710Z ##[group]Run chmod +x ./ipabuild.sh +2025-08-16T21:02:24.2370070Z chmod +x ./ipabuild.sh +2025-08-16T21:02:24.2427230Z shell: /bin/bash -e {0} +2025-08-16T21:02:24.2427790Z env: +2025-08-16T21:02:24.2428530Z MD_APPLE_SDK_ROOT: /Applications/Xcode_16.4.app +2025-08-16T21:02:24.2429240Z ##[endgroup] +2025-08-16T21:02:24.2861450Z ##[group]Run ./ipabuild.sh +2025-08-16T21:02:24.2861720Z ./ipabuild.sh +2025-08-16T21:02:24.2907970Z shell: /bin/bash -e {0} +2025-08-16T21:02:24.2908220Z env: +2025-08-16T21:02:24.2908420Z MD_APPLE_SDK_ROOT: /Applications/Xcode_16.4.app +2025-08-16T21:02:24.2908650Z ##[endgroup] +2025-08-16T21:02:28.0181810Z Command line invocation: +2025-08-16T21:02:28.0283950Z /Applications/Xcode_16.4.app/Contents/Developer/usr/bin/xcodebuild -project /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -scheme Sulfur -configuration Release -derivedDataPath /Users/runner/work/Sora/Sora/build/DerivedDataApp -destination generic/platform=iOS clean build CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS= CODE_SIGNING_ALLOWED=NO +2025-08-16T21:02:28.0387180Z +2025-08-16T21:02:28.0488230Z Build settings from command line: +2025-08-16T21:02:28.0565280Z CODE_SIGN_ENTITLEMENTS = +2025-08-16T21:02:28.0565720Z CODE_SIGN_IDENTITY = +2025-08-16T21:02:28.0566080Z CODE_SIGNING_ALLOWED = NO +2025-08-16T21:02:28.0566350Z CODE_SIGNING_REQUIRED = NO +2025-08-16T21:02:28.0566580Z +2025-08-16T21:02:30.8228980Z Resolve Package Graph +2025-08-16T21:02:31.0114650Z +2025-08-16T21:02:31.0240660Z Fetching from https://github.com/omaralbeik/Drops.git +2025-08-16T21:02:32.6609530Z +2025-08-16T21:02:46.5280380Z Fetching from https://github.com/cbpowell/MarqueeLabel +2025-08-16T21:02:47.9347550Z +2025-08-16T21:02:48.6159050Z Fetching from https://github.com/kean/Nuke.git +2025-08-16T21:02:50.5460300Z +2025-08-16T21:02:51.2215190Z Fetching from https://github.com/cranci1/SoraCore +2025-08-16T21:02:51.8787710Z +2025-08-16T21:02:52.6531940Z Creating working copy of package ‘MarqueeLabel’ +2025-08-16T21:02:52.7086090Z +2025-08-16T21:02:52.7195650Z Checking out master (18e4787) of package ‘MarqueeLabel’ +2025-08-16T21:02:52.8458040Z +2025-08-16T21:02:52.8684300Z Creating working copy of package ‘Drops’ +2025-08-16T21:02:52.9234090Z +2025-08-16T21:02:52.9342250Z Checking out main (5824681) of package ‘Drops’ +2025-08-16T21:02:53.0035640Z +2025-08-16T21:02:53.0258510Z Creating working copy of package ‘SoraCore’ +2025-08-16T21:02:53.0675190Z +2025-08-16T21:02:53.0792280Z Checking out main (543fe1c) of package ‘SoraCore’ +2025-08-16T21:02:53.1013700Z +2025-08-16T21:02:53.1214910Z Creating working copy of package ‘Nuke’ +2025-08-16T21:02:53.2287980Z +2025-08-16T21:02:53.2389380Z Checking out main (c7ba483) of package ‘Nuke’ +2025-08-16T21:02:53.4066950Z +2025-08-16T21:02:55.4686060Z +2025-08-16T21:02:55.4799210Z Resolved source packages: +2025-08-16T21:02:55.4901050Z SoraCore: https://github.com/cranci1/SoraCore @ main (543fe1c) +2025-08-16T21:02:55.5002690Z Drops: https://github.com/omaralbeik/Drops.git @ main (5824681) +2025-08-16T21:02:55.5104960Z MarqueeLabel: https://github.com/cbpowell/MarqueeLabel @ master (18e4787) +2025-08-16T21:02:55.5213220Z Nuke: https://github.com/kean/Nuke.git @ main (c7ba483) +2025-08-16T21:02:55.5334000Z +2025-08-16T21:02:55.6540780Z note: Using codesigning identity override: +2025-08-16T21:02:56.2710710Z ComputePackagePrebuildTargetDependencyGraph +2025-08-16T21:02:56.5629330Z +2025-08-16T21:02:56.5733890Z CreateBuildRequest +2025-08-16T21:02:56.5831680Z +2025-08-16T21:02:56.6020370Z SendProjectDescription +2025-08-16T21:02:56.6123100Z +2025-08-16T21:02:56.6229890Z CreateBuildOperation +2025-08-16T21:02:56.6353480Z +2025-08-16T21:02:56.7471860Z ** CLEAN SUCCEEDED ** +2025-08-16T21:02:56.7578320Z +2025-08-16T21:02:56.7681200Z note: Using codesigning identity override: +2025-08-16T21:02:56.7784550Z ComputePackagePrebuildTargetDependencyGraph +2025-08-16T21:02:56.8845000Z +2025-08-16T21:02:56.8946670Z Prepare packages +2025-08-16T21:02:56.9051360Z +2025-08-16T21:02:56.9158910Z CreateBuildRequest +2025-08-16T21:02:56.9267110Z +2025-08-16T21:02:56.9381660Z SendProjectDescription +2025-08-16T21:02:57.1171210Z +2025-08-16T21:02:57.1294790Z CreateBuildOperation +2025-08-16T21:02:57.1397680Z +2025-08-16T21:02:57.1504960Z ComputeTargetDependencyGraph +2025-08-16T21:02:57.2156060Z note: Building targets in dependency order +2025-08-16T21:02:57.2260250Z note: Target dependency graph (12 targets) +2025-08-16T21:02:57.2361240Z Target 'Sulfur' in project 'Sulfur' +2025-08-16T21:02:57.2463510Z ➜ Explicit dependency on target 'Nuke' in project 'Nuke' +2025-08-16T21:02:57.2565270Z ➜ Explicit dependency on target 'Drops' in project 'Drops' +2025-08-16T21:02:57.2667370Z ➜ Explicit dependency on target 'SoraCore' in project 'SoraCore' +2025-08-16T21:02:57.2769120Z ➜ Explicit dependency on target 'MarqueeLabel' in project 'MarqueeLabel' +2025-08-16T21:02:57.2870550Z ➜ Explicit dependency on target 'NukeUI' in project 'Nuke' +2025-08-16T21:02:57.2971210Z Target 'NukeUI' in project 'Nuke' +2025-08-16T21:02:57.3072390Z ➜ Explicit dependency on target 'NukeUI' in project 'Nuke' +2025-08-16T21:02:57.3175170Z ➜ Explicit dependency on target 'Nuke' in project 'Nuke' +2025-08-16T21:02:57.3278750Z Target 'NukeUI' in project 'Nuke' +2025-08-16T21:02:57.3379890Z ➜ Explicit dependency on target 'Nuke' in project 'Nuke' +2025-08-16T21:02:57.3482880Z Target 'MarqueeLabel' in project 'MarqueeLabel' +2025-08-16T21:02:57.3585440Z ➜ Explicit dependency on target 'MarqueeLabel' in project 'MarqueeLabel' +2025-08-16T21:02:57.3691780Z ➜ Explicit dependency on target 'MarqueeLabel_MarqueeLabel' in project 'MarqueeLabel' +2025-08-16T21:02:57.3794090Z Target 'MarqueeLabel' in project 'MarqueeLabel' +2025-08-16T21:02:57.3895630Z ➜ Explicit dependency on target 'MarqueeLabel_MarqueeLabel' in project 'MarqueeLabel' +2025-08-16T21:02:57.4037860Z Target 'MarqueeLabel_MarqueeLabel' in project 'MarqueeLabel' (no dependencies) +2025-08-16T21:02:57.4140120Z Target 'SoraCore' in project 'SoraCore' +2025-08-16T21:02:57.4276900Z ➜ Explicit dependency on target 'SoraCore' in project 'SoraCore' +2025-08-16T21:02:57.4436890Z Target 'SoraCore' in project 'SoraCore' (no dependencies) +2025-08-16T21:02:57.4437630Z Target 'Drops' in project 'Drops' +2025-08-16T21:02:57.4439010Z ➜ Explicit dependency on target 'Drops' in project 'Drops' +2025-08-16T21:02:57.4464620Z Target 'Drops' in project 'Drops' (no dependencies) +2025-08-16T21:02:57.4465060Z Target 'Nuke' in project 'Nuke' +2025-08-16T21:02:57.4466970Z ➜ Explicit dependency on target 'Nuke' in project 'Nuke' +2025-08-16T21:02:57.4467590Z Target 'Nuke' in project 'Nuke' (no dependencies) +2025-08-16T21:02:57.4467800Z +2025-08-16T21:02:57.4467950Z GatherProvisioningInputs +2025-08-16T21:02:57.4468160Z +2025-08-16T21:02:57.4468230Z CreateBuildDescription +2025-08-16T21:02:57.5384840Z +2025-08-16T21:02:57.5487510Z ExecuteExternalTool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version +2025-08-16T21:02:58.3961920Z +2025-08-16T21:02:58.4071500Z ExecuteExternalTool /Applications/Xcode_16.4.app/Contents/Developer/usr/bin/actool --print-asset-tag-combinations --output-format xml1 /Users/runner/work/Sora/Sora/Sora/Preview Content/Preview Assets.xcassets /Users/runner/work/Sora/Sora/Sora/Assets.xcassets +2025-08-16T21:03:02.0119260Z +2025-08-16T21:03:02.0241700Z ExecuteExternalTool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -x c -c /dev/null +2025-08-16T21:03:02.0378790Z +2025-08-16T21:03:02.0513220Z ExecuteExternalTool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details +2025-08-16T21:03:02.0694840Z +2025-08-16T21:03:02.0853550Z ExecuteExternalTool /Applications/Xcode_16.4.app/Contents/Developer/usr/bin/actool --version --output-format xml1 +2025-08-16T21:03:02.0858650Z +2025-08-16T21:03:02.1358910Z Build description signature: 418ebf263ef6a26f7dd18b49e014ca8a +2025-08-16T21:03:02.1463770Z Build description path: /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/XCBuildData/418ebf263ef6a26f7dd18b49e014ca8a.xcbuilddata +2025-08-16T21:03:02.2219460Z ClangStatCache /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache +2025-08-16T21:03:02.2335550Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:02.2443440Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache +2025-08-16T21:03:05.2182830Z +2025-08-16T21:03:05.2283890Z CreateBuildDirectory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products +2025-08-16T21:03:05.2309170Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.2410740Z builtin-create-build-directory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products +2025-08-16T21:03:05.2511540Z +2025-08-16T21:03:05.2614550Z CreateBuildDirectory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex +2025-08-16T21:03:05.2716980Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.2819720Z builtin-create-build-directory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex +2025-08-16T21:03:05.2927030Z +2025-08-16T21:03:05.3028980Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur-9457afc69bd11dfe7a08eee3557a7685-VFS-iphoneos/all-product-headers.yaml +2025-08-16T21:03:05.3130620Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.3233690Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur-9457afc69bd11dfe7a08eee3557a7685-VFS-iphoneos/all-product-headers.yaml +2025-08-16T21:03:05.3335660Z +2025-08-16T21:03:05.3436940Z CreateBuildDirectory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos +2025-08-16T21:03:05.3538340Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.3641320Z builtin-create-build-directory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos +2025-08-16T21:03:05.3743030Z +2025-08-16T21:03:05.3832440Z CreateBuildDirectory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos +2025-08-16T21:03:05.3935560Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.4037950Z builtin-create-build-directory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos +2025-08-16T21:03:05.4140350Z +2025-08-16T21:03:05.4243660Z CreateBuildDirectory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks +2025-08-16T21:03:05.4355270Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.4457110Z builtin-create-build-directory /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks +2025-08-16T21:03:05.4583230Z +2025-08-16T21:03:05.4707180Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur.DependencyStaticMetadataFileList (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.4810940Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.4913020Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur.DependencyStaticMetadataFileList +2025-08-16T21:03:05.5016590Z +2025-08-16T21:03:05.5172210Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur.hmap (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5282610Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5292290Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur.hmap +2025-08-16T21:03:05.5393390Z +2025-08-16T21:03:05.5413470Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur.DependencyMetadataFileList (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5515910Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5634240Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur.DependencyMetadataFileList +2025-08-16T21:03:05.5735300Z +2025-08-16T21:03:05.5836460Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-project-headers.hmap (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5881310Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5882150Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-project-headers.hmap +2025-08-16T21:03:05.5897470Z +2025-08-16T21:03:05.5898250Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-own-target-headers.hmap (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5899300Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5899980Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-own-target-headers.hmap +2025-08-16T21:03:05.5900620Z +2025-08-16T21:03:05.5901230Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-generated-files.hmap (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5902490Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5903260Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-generated-files.hmap +2025-08-16T21:03:05.5921400Z +2025-08-16T21:03:05.5922190Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-target-headers.hmap (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5923160Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5923780Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-target-headers.hmap +2025-08-16T21:03:05.5924400Z +2025-08-16T21:03:05.5925060Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-non-framework-target-headers.hmap (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5925960Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5929590Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-non-framework-target-headers.hmap +2025-08-16T21:03:05.5935910Z +2025-08-16T21:03:05.5936770Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur_const_extract_protocols.json (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5937630Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5938790Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur_const_extract_protocols.json +2025-08-16T21:03:05.5939410Z +2025-08-16T21:03:05.5940100Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.SwiftFileList (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.5940960Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.5942110Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.SwiftFileList +2025-08-16T21:03:05.5942670Z +2025-08-16T21:03:05.6053600Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.SwiftConstValuesFileList (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.6157140Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.6260850Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.SwiftConstValuesFileList +2025-08-16T21:03:05.6364130Z +2025-08-16T21:03:05.6466540Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.LinkFileList (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.6568860Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.6671250Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.LinkFileList +2025-08-16T21:03:05.6772830Z +2025-08-16T21:03:05.6803930Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur-OutputFileMap.json (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.6911440Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.6992720Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur-OutputFileMap.json +2025-08-16T21:03:05.7005510Z +2025-08-16T21:03:05.7016790Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.modulemap (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.7021330Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.7031250Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.modulemap +2025-08-16T21:03:05.7041280Z +2025-08-16T21:03:05.7042990Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.DependencyStaticMetadataFileList (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.7044170Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.7045710Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.DependencyStaticMetadataFileList +2025-08-16T21:03:05.7158900Z +2025-08-16T21:03:05.7286680Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.DependencyMetadataFileList (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.7411770Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.7519950Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.DependencyMetadataFileList +2025-08-16T21:03:05.7622130Z +2025-08-16T21:03:05.7724570Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_const_extract_protocols.json (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.7826540Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.7924640Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_const_extract_protocols.json +2025-08-16T21:03:05.8025870Z +2025-08-16T21:03:05.8093480Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftFileList (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.8124990Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.8132850Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftFileList +2025-08-16T21:03:05.8135270Z +2025-08-16T21:03:05.8238540Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftConstValuesFileList (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.8342600Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.8444320Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftConstValuesFileList +2025-08-16T21:03:05.8551940Z +2025-08-16T21:03:05.8655260Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.LinkFileList (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.8695540Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.8799060Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.LinkFileList +2025-08-16T21:03:05.8804640Z +2025-08-16T21:03:05.8906010Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-OutputFileMap.json (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.9008010Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.9218090Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-OutputFileMap.json +2025-08-16T21:03:05.9219680Z +2025-08-16T21:03:05.9222440Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SoraCore.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.modulemap (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.9225200Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:05.9227300Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos +2025-08-16T21:03:05.9228740Z +2025-08-16T21:03:05.9229430Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_const_extract_protocols.json (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9230350Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9231770Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_const_extract_protocols.json +2025-08-16T21:03:05.9233390Z +2025-08-16T21:03:05.9235030Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftFileList (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9240710Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9244450Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftFileList +2025-08-16T21:03:05.9246020Z +2025-08-16T21:03:05.9249490Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftConstValuesFileList (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9253710Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9266330Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftConstValuesFileList +2025-08-16T21:03:05.9266930Z +2025-08-16T21:03:05.9268190Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.LinkFileList (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9333340Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9378310Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.LinkFileList +2025-08-16T21:03:05.9392460Z +2025-08-16T21:03:05.9394400Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-OutputFileMap.json (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9395800Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9396590Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-OutputFileMap.json +2025-08-16T21:03:05.9397120Z +2025-08-16T21:03:05.9397700Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.modulemap (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9398900Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9399690Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.modulemap +2025-08-16T21:03:05.9400130Z +2025-08-16T21:03:05.9400960Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.DependencyStaticMetadataFileList (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9401840Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9408530Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.DependencyStaticMetadataFileList +2025-08-16T21:03:05.9410270Z +2025-08-16T21:03:05.9421230Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.DependencyMetadataFileList (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9423960Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9425940Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.DependencyMetadataFileList +2025-08-16T21:03:05.9427320Z +2025-08-16T21:03:05.9439110Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/NukeUI.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.modulemap (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:05.9442060Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9443850Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos +2025-08-16T21:03:05.9451480Z +2025-08-16T21:03:05.9452090Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_const_extract_protocols.json (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9453040Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9453860Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_const_extract_protocols.json +2025-08-16T21:03:05.9454400Z +2025-08-16T21:03:05.9454940Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9455720Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9456440Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList +2025-08-16T21:03:05.9457020Z +2025-08-16T21:03:05.9457740Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftConstValuesFileList (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9458970Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9459740Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftConstValuesFileList +2025-08-16T21:03:05.9460320Z +2025-08-16T21:03:05.9460940Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.LinkFileList (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9461950Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9462990Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.LinkFileList +2025-08-16T21:03:05.9463590Z +2025-08-16T21:03:05.9464180Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-OutputFileMap.json (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9467320Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9468210Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-OutputFileMap.json +2025-08-16T21:03:05.9468860Z +2025-08-16T21:03:05.9469470Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.modulemap (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9472040Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9472750Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.modulemap +2025-08-16T21:03:05.9473180Z +2025-08-16T21:03:05.9474770Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.DependencyStaticMetadataFileList (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9475810Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9476720Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.DependencyStaticMetadataFileList +2025-08-16T21:03:05.9477510Z +2025-08-16T21:03:05.9478210Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.DependencyMetadataFileList (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9486220Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9487290Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.DependencyMetadataFileList +2025-08-16T21:03:05.9488110Z +2025-08-16T21:03:05.9489050Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Nuke.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.modulemap (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9495570Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:05.9497270Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos +2025-08-16T21:03:05.9499560Z +2025-08-16T21:03:05.9500480Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/empty-MarqueeLabel_MarqueeLabel.plist (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9504480Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9508130Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/empty-MarqueeLabel_MarqueeLabel.plist +2025-08-16T21:03:05.9510090Z +2025-08-16T21:03:05.9512310Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/MarqueeLabel_MarqueeLabel.DependencyStaticMetadataFileList (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9515690Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9518130Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/MarqueeLabel_MarqueeLabel.DependencyStaticMetadataFileList +2025-08-16T21:03:05.9519930Z +2025-08-16T21:03:05.9522080Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/MarqueeLabel_MarqueeLabel.DependencyMetadataFileList (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9525450Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9529370Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/MarqueeLabel_MarqueeLabel.DependencyMetadataFileList +2025-08-16T21:03:05.9531120Z +2025-08-16T21:03:05.9533130Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_const_extract_protocols.json (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9536980Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9539460Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_const_extract_protocols.json +2025-08-16T21:03:05.9541460Z +2025-08-16T21:03:05.9544050Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftFileList (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9547340Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9550680Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftFileList +2025-08-16T21:03:05.9553840Z +2025-08-16T21:03:05.9556650Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftConstValuesFileList (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9559660Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9562550Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftConstValuesFileList +2025-08-16T21:03:05.9565630Z +2025-08-16T21:03:05.9569100Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.LinkFileList (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9571470Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9572460Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.LinkFileList +2025-08-16T21:03:05.9573040Z +2025-08-16T21:03:05.9573830Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-OutputFileMap.json (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9574890Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9575860Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-OutputFileMap.json +2025-08-16T21:03:05.9576460Z +2025-08-16T21:03:05.9577130Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.modulemap (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9578100Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9578930Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.modulemap +2025-08-16T21:03:05.9579430Z +2025-08-16T21:03:05.9580190Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.DependencyStaticMetadataFileList (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9581190Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9582110Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.DependencyStaticMetadataFileList +2025-08-16T21:03:05.9582690Z +2025-08-16T21:03:05.9583420Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.DependencyMetadataFileList (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9584450Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9585340Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.DependencyMetadataFileList +2025-08-16T21:03:05.9585900Z +2025-08-16T21:03:05.9586650Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources/resource_bundle_accessor.swift (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9587620Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9588600Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources/resource_bundle_accessor.swift +2025-08-16T21:03:05.9589640Z +2025-08-16T21:03:05.9590700Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/MarqueeLabel.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.modulemap (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9592080Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9594090Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos +2025-08-16T21:03:05.9595620Z +2025-08-16T21:03:05.9596480Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_const_extract_protocols.json (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9597490Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9598280Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_const_extract_protocols.json +2025-08-16T21:03:05.9598860Z +2025-08-16T21:03:05.9599420Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftFileList (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9600740Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9601580Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftFileList +2025-08-16T21:03:05.9602110Z +2025-08-16T21:03:05.9602810Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftConstValuesFileList (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9604110Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9604930Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftConstValuesFileList +2025-08-16T21:03:05.9605470Z +2025-08-16T21:03:05.9606090Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.LinkFileList (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9606960Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9607720Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.LinkFileList +2025-08-16T21:03:05.9608220Z +2025-08-16T21:03:05.9608840Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-OutputFileMap.json (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9616150Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9618280Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-OutputFileMap.json +2025-08-16T21:03:05.9620610Z +2025-08-16T21:03:05.9622130Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.modulemap (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9624310Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9627120Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.modulemap +2025-08-16T21:03:05.9628400Z +2025-08-16T21:03:05.9630280Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.DependencyStaticMetadataFileList (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9633250Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9635790Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.DependencyStaticMetadataFileList +2025-08-16T21:03:05.9637230Z +2025-08-16T21:03:05.9639080Z WriteAuxiliaryFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.DependencyMetadataFileList (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9641690Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9643800Z write-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.DependencyMetadataFileList +2025-08-16T21:03:05.9645520Z +2025-08-16T21:03:05.9647970Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Drops.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.modulemap (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9651200Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:05.9675650Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.modulemap /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos +2025-08-16T21:03:05.9677190Z +2025-08-16T21:03:05.9677630Z MkDir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:05.9678160Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:05.9678620Z /bin/mkdir -p /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app +2025-08-16T21:03:05.9678940Z +2025-08-16T21:03:05.9679480Z MkDir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9680360Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9681070Z /bin/mkdir -p /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle +2025-08-16T21:03:05.9681490Z +2025-08-16T21:03:05.9682490Z CpResource /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle/PrivacyInfo.xcprivacy /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel/Sources/PrivacyInfo.xcprivacy (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9685640Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9687620Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel/Sources/PrivacyInfo.xcprivacy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle +2025-08-16T21:03:05.9689060Z +2025-08-16T21:03:05.9690160Z ProcessInfoPlistFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle/Info.plist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/empty-MarqueeLabel_MarqueeLabel.plist (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9691600Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9693250Z builtin-infoPlistUtility /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel_MarqueeLabel.build/empty-MarqueeLabel_MarqueeLabel.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle/Info.plist +2025-08-16T21:03:05.9694610Z +2025-08-16T21:03:05.9695540Z RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9696480Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9697410Z builtin-RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle +2025-08-16T21:03:05.9698040Z +2025-08-16T21:03:05.9698520Z Touch /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle (in target 'MarqueeLabel_MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9699780Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:05.9700520Z /usr/bin/touch -c /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle +2025-08-16T21:03:05.9701060Z +2025-08-16T21:03:05.9701330Z SwiftDriver SoraCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.9701990Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.9712800Z builtin-SwiftDriver -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SoraCore -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name soracore -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:05.9730740Z +2025-08-16T21:03:05.9731140Z SwiftDriver Nuke normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:05.9731690Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.9746280Z builtin-SwiftDriver -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Nuke -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name nuke -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:05.9788310Z +2025-08-16T21:03:05.9789640Z SwiftDriver MarqueeLabel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:05.9791590Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.9832780Z builtin-SwiftDriver -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MarqueeLabel -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name marqueelabel -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:05.9888920Z +2025-08-16T21:03:05.9889220Z SwiftDriver Drops normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Drops' from project 'Drops') +2025-08-16T21:03:05.9889660Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.9935360Z builtin-SwiftDriver -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Drops -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:05.9959880Z +2025-08-16T21:03:05.9960570Z SwiftCompile normal arm64 Compiling\ SoraCore.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore/Sources/SoraCore/SoraCore.swift (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.9961650Z +2025-08-16T21:03:05.9972380Z SwiftCompile normal arm64 /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore/Sources/SoraCore/SoraCore.swift (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:05.9973080Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:05.9973280Z +2025-08-16T21:03:10.3261720Z +2025-08-16T21:03:10.3401280Z SwiftCompile normal arm64 Compiling\ Cache.swift,\ DataCache.swift,\ DataCaching.swift,\ ImageCache.swift,\ ImageCaching.swift,\ AssetType.swift,\ ImageDecoderRegistry.swift,\ ImageDecoders+Default.swift,\ ImageDecoders+Empty.swift,\ ImageDecoding.swift,\ ImageEncoders+Default.swift,\ ImageEncoders+ImageIO.swift,\ ImageEncoders.swift,\ ImageEncoding.swift,\ ImageContainer.swift,\ ImageRequest.swift,\ ImageResponse.swift,\ ImageTask.swift,\ Atomic.swift,\ DataPublisher.swift,\ Extensions.swift,\ Graphics.swift,\ ImagePublisher.swift,\ ImageRequestKeys.swift,\ LinkedList.swift,\ Log.swift,\ Operation.swift,\ RateLimiter.swift,\ ResumableData.swift,\ DataLoader.swift,\ DataLoading.swift,\ ImagePipeline+Cache.swift,\ ImagePipeline+Configuration.swift,\ ImagePipeline+Delegate.swift,\ ImagePipeline+Error.swift,\ ImagePipeline.swift,\ ImagePrefetcher.swift,\ ImageDecompression.swift,\ ImageProcessing.swift,\ ImageProcessingOptions.swift,\ ImageProcessors+Anonymous.swift,\ ImageProcessors+Circle.swift,\ ImageProcessors+Composition.swift,\ ImageProcessors+CoreImage.swift,\ ImageProcessors+GaussianBlur.swift,\ ImageProcessors+Resize.swift,\ ImageProcessors+RoundedCorners.swift,\ ImageProcessors.swift,\ AsyncPipelineTask.swift,\ AsyncTask.swift,\ TaskFetchOriginalData.swift,\ TaskFetchOriginalImage.swift,\ TaskFetchWithPublisher.swift,\ TaskLoadData.swift,\ TaskLoadImage.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Caching/Cache.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Caching/DataCache.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Caching/DataCaching.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Caching/ImageCache.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Caching/ImageCaching.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Decoding/AssetType.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Decoding/ImageDecoderRegistry.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Decoding/ImageDecoders+Default.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Decoding/ImageDecoders+Empty.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Decoding/ImageDecoding.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Encoding/ImageEncoders+Default.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Encoding/ImageEncoders+ImageIO.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Encoding/ImageEncoders.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Encoding/ImageEncoding.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/ImageContainer.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/ImageRequest.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/ImageResponse.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/ImageTask.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/Atomic.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/DataPublisher.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/Extensions.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/Graphics.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/ImagePublisher.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/ImageRequestKeys.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/LinkedList.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/Log.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/Operation.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/RateLimiter.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Internal/ResumableData.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Loading/DataLoader.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Loading/DataLoading.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Pipeline/ImagePipeline+Cache.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Pipeline/ImagePipeline+Configuration.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Pipeline/ImagePipeline+Delegate.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Pipeline/ImagePipeline+Error.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Pipeline/ImagePipeline.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Prefetching/ImagePrefetcher.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageDecompression.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessing.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessingOptions.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+Anonymous.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+Circle.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+Composition.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+CoreImage.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+GaussianBlur.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+Resize.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors+RoundedCorners.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Processing/ImageProcessors.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/AsyncPipelineTask.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/AsyncTask.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/TaskFetchOriginalData.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/TaskFetchOriginalImage.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/TaskFetchWithPublisher.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/TaskLoadData.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/Nuke/Tasks/TaskLoadImage.swift (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:10.3528770Z CompileSwift normal arm64 (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:10.3630510Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:10.3732710Z +2025-08-16T21:03:23.5169980Z +2025-08-16T21:03:23.5680110Z SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ MarqueeLabel.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources/resource_bundle_accessor.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel/Sources/MarqueeLabel.swift (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.5777960Z +2025-08-16T21:03:23.5879480Z CompileSwift normal arm64 (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.5981590Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.6083940Z +2025-08-16T21:03:23.6185080Z +2025-08-16T21:03:23.6290980Z SwiftCompile normal arm64 Compiling\ AnimationContext.swift,\ Animator.swift,\ Drop.swift,\ DropView.swift,\ Drops.swift,\ PassthroughView.swift,\ PassthroughWindow.swift,\ Presenter.swift,\ Weak.swift,\ WindowViewController.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/AnimationContext.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/Animator.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/Drop.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/DropView.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/Drops.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/PassthroughView.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/PassthroughWindow.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/Presenter.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/Weak.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops/Sources/WindowViewController.swift (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.6394420Z +2025-08-16T21:03:23.6494380Z CompileSwift normal arm64 (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.6595840Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.6697020Z +2025-08-16T21:03:23.6797640Z +2025-08-16T21:03:23.6899640Z SwiftDriverJobDiscovery normal arm64 Compiling SoraCore.swift (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.7001610Z +2025-08-16T21:03:23.7103830Z SwiftDriver\ Compilation\ Requirements SoraCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.7207270Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.7340700Z builtin-Swift-Compilation-Requirements -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SoraCore -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name soracore -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.7367350Z +2025-08-16T21:03:23.7468860Z SwiftDriverJobDiscovery normal arm64 Compiling AnimationContext.swift, Animator.swift, Drop.swift, DropView.swift, Drops.swift, PassthroughView.swift, PassthroughWindow.swift, Presenter.swift, Weak.swift, WindowViewController.swift (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.7570350Z +2025-08-16T21:03:23.7672360Z SwiftDriver\ Compilation SoraCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.7778020Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.7907270Z builtin-Swift-Compilation -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SoraCore -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -parse-as-library -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name soracore -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.8011830Z +2025-08-16T21:03:23.8113750Z SwiftMergeGeneratedHeaders /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SoraCore-Swift.h /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-Swift.h (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.8215530Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.8327590Z builtin-swiftHeaderTool -arch arm64 /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore-Swift.h -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SoraCore-Swift.h +2025-08-16T21:03:23.8426940Z +2025-08-16T21:03:23.8528870Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/arm64-apple-ios.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftmodule (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.8630470Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.8734980Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/arm64-apple-ios.swiftmodule +2025-08-16T21:03:23.8833000Z +2025-08-16T21:03:23.8941510Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/arm64-apple-ios.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftdoc (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.9037130Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.9336350Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/arm64-apple-ios.swiftdoc +2025-08-16T21:03:23.9341420Z +2025-08-16T21:03:23.9344750Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/arm64-apple-ios.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.abi.json (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.9360340Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.9373770Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/arm64-apple-ios.abi.json +2025-08-16T21:03:23.9384380Z +2025-08-16T21:03:23.9385820Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftsourceinfo (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.9391600Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.9397460Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +2025-08-16T21:03:23.9403030Z +2025-08-16T21:03:23.9410790Z SwiftDriver\ Compilation\ Requirements Drops normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9413300Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.9657330Z builtin-Swift-Compilation-Requirements -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Drops -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.9667670Z +2025-08-16T21:03:23.9668000Z SwiftDriver\ Compilation Nuke normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:23.9668480Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.9711960Z builtin-Swift-Compilation -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Nuke -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name nuke -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.9725350Z +2025-08-16T21:03:23.9726360Z SwiftMergeGeneratedHeaders /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Drops-Swift.h /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-Swift.h (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9727650Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9728810Z builtin-swiftHeaderTool -arch arm64 /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-Swift.h -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Drops-Swift.h +2025-08-16T21:03:23.9730710Z +2025-08-16T21:03:23.9731680Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/arm64-apple-ios.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftmodule (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9733210Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9737990Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/arm64-apple-ios.swiftmodule +2025-08-16T21:03:23.9739690Z +2025-08-16T21:03:23.9743030Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/arm64-apple-ios.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftdoc (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9745260Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9747340Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/arm64-apple-ios.swiftdoc +2025-08-16T21:03:23.9749000Z +2025-08-16T21:03:23.9750010Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/arm64-apple-ios.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.abi.json (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9751270Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9753110Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/arm64-apple-ios.abi.json +2025-08-16T21:03:23.9754600Z +2025-08-16T21:03:23.9755690Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftsourceinfo (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9758250Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9763130Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +2025-08-16T21:03:23.9764870Z +2025-08-16T21:03:23.9765240Z SwiftDriver\ Compilation MarqueeLabel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9765780Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.9779510Z builtin-Swift-Compilation -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MarqueeLabel -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name marqueelabel -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.9795160Z +2025-08-16T21:03:23.9798300Z SwiftDriver\ Compilation Drops normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9799670Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.9823020Z builtin-Swift-Compilation -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Drops -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.9833460Z +2025-08-16T21:03:23.9833920Z Ld /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.o normal (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.9834610Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.9841500Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -Os -w -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -L/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -filelist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_lto.o -Xlinker -dependency_info -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.swiftmodule -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.o +2025-08-16T21:03:23.9849050Z +2025-08-16T21:03:23.9849410Z Ld /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.o normal (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9850230Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9857640Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -Os -w -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -L/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -filelist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_lto.o -Xlinker -dependency_info -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.swiftmodule -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.o +2025-08-16T21:03:23.9873550Z +2025-08-16T21:03:23.9874270Z ExtractAppIntentsMetadata (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.9875610Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.9886150Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SoraCore --sdk-root /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk --xcode-version 16F6 --platform-family iOS --deployment-target 12.0 --bundle-identifier soracore.SoraCore --output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.o --dependency-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore_dependency_info.dat --stringsdata-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftFileList --metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.DependencyMetadataFileList --static-metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/SoraCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/SoraCore.build/Release-iphoneos/SoraCore.build/Objects-normal/arm64/SoraCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization +2025-08-16T21:03:23.9894880Z 2025-08-16 21:03:14.513 appintentsmetadataprocessor[2534:12580] Starting appintentsmetadataprocessor export +2025-08-16T21:03:23.9895520Z 2025-08-16 21:03:14.613 appintentsmetadataprocessor[2534:12580] Extracted no relevant App Intents symbols, skipping writing output +2025-08-16T21:03:23.9895860Z +2025-08-16T21:03:23.9896040Z ExtractAppIntentsMetadata (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9896570Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9903280Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Drops --sdk-root /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk --xcode-version 16F6 --platform-family iOS --deployment-target 13.0 --bundle-identifier drops.Drops --output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.o --dependency-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops_dependency_info.dat --stringsdata-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftFileList --metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.DependencyMetadataFileList --static-metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Drops.DependencyStaticMetadataFileList --swift-const-vals-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Drops.build/Release-iphoneos/Drops.build/Objects-normal/arm64/Drops.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization +2025-08-16T21:03:23.9914550Z 2025-08-16 21:03:14.632 appintentsmetadataprocessor[2535:12585] Starting appintentsmetadataprocessor export +2025-08-16T21:03:23.9915180Z 2025-08-16 21:03:14.668 appintentsmetadataprocessor[2535:12585] Extracted no relevant App Intents symbols, skipping writing output +2025-08-16T21:03:23.9916040Z +2025-08-16T21:03:23.9916550Z RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.o (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:03:23.9917340Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/SoraCore +2025-08-16T21:03:23.9918030Z builtin-RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/SoraCore.o +2025-08-16T21:03:23.9919500Z +2025-08-16T21:03:23.9921010Z RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.o (in target 'Drops' from project 'Drops') +2025-08-16T21:03:23.9923010Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Drops +2025-08-16T21:03:23.9924600Z builtin-RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Drops.o +2025-08-16T21:03:23.9925030Z +2025-08-16T21:03:23.9925410Z SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, MarqueeLabel.swift (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9925880Z +2025-08-16T21:03:23.9927030Z SwiftDriver\ Compilation\ Requirements MarqueeLabel normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9927950Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:23.9939050Z builtin-Swift-Compilation-Requirements -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MarqueeLabel -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name marqueelabel -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:23.9951600Z +2025-08-16T21:03:23.9952700Z SwiftMergeGeneratedHeaders /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/MarqueeLabel-Swift.h /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-Swift.h (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9954150Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:23.9955410Z builtin-swiftHeaderTool -arch arm64 /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel-Swift.h -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/MarqueeLabel-Swift.h +2025-08-16T21:03:23.9956470Z +2025-08-16T21:03:23.9957500Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/arm64-apple-ios.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftmodule (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9958880Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:23.9960800Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/arm64-apple-ios.swiftmodule +2025-08-16T21:03:23.9962570Z +2025-08-16T21:03:23.9963650Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/arm64-apple-ios.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftdoc (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9964990Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:23.9966870Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/arm64-apple-ios.swiftdoc +2025-08-16T21:03:23.9968750Z +2025-08-16T21:03:23.9970140Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/arm64-apple-ios.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.abi.json (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9971490Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:23.9973380Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/arm64-apple-ios.abi.json +2025-08-16T21:03:23.9975050Z +2025-08-16T21:03:23.9976120Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftsourceinfo (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9979900Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:23.9981840Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +2025-08-16T21:03:23.9984140Z +2025-08-16T21:03:23.9984650Z Ld /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.o normal (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:23.9985380Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:23.9992180Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -Os -w -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -L/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -filelist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_lto.o -Xlinker -dependency_info -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.swiftmodule -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.o +2025-08-16T21:03:24.0007650Z +2025-08-16T21:03:24.0007890Z ExtractAppIntentsMetadata (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:24.0008430Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:24.0014880Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MarqueeLabel --sdk-root /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk --xcode-version 16F6 --platform-family iOS --deployment-target 12.0 --bundle-identifier marqueelabel.MarqueeLabel --output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.o --dependency-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel_dependency_info.dat --stringsdata-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftFileList --metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.DependencyMetadataFileList --static-metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/MarqueeLabel.DependencyStaticMetadataFileList --swift-const-vals-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/MarqueeLabel.build/Release-iphoneos/MarqueeLabel.build/Objects-normal/arm64/MarqueeLabel.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization +2025-08-16T21:03:24.0021340Z 2025-08-16 21:03:15.628 appintentsmetadataprocessor[2541:12617] Starting appintentsmetadataprocessor export +2025-08-16T21:03:24.0021930Z 2025-08-16 21:03:15.679 appintentsmetadataprocessor[2541:12617] Extracted no relevant App Intents symbols, skipping writing output +2025-08-16T21:03:24.0022300Z +2025-08-16T21:03:24.0022860Z RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.o (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:03:24.0024070Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/MarqueeLabel +2025-08-16T21:03:24.0024780Z builtin-RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel.o +2025-08-16T21:03:24.0025240Z +2025-08-16T21:03:24.0029030Z SwiftDriverJobDiscovery normal arm64 Compiling Cache.swift, DataCache.swift, DataCaching.swift, ImageCache.swift, ImageCaching.swift, AssetType.swift, ImageDecoderRegistry.swift, ImageDecoders+Default.swift, ImageDecoders+Empty.swift, ImageDecoding.swift, ImageEncoders+Default.swift, ImageEncoders+ImageIO.swift, ImageEncoders.swift, ImageEncoding.swift, ImageContainer.swift, ImageRequest.swift, ImageResponse.swift, ImageTask.swift, Atomic.swift, DataPublisher.swift, Extensions.swift, Graphics.swift, ImagePublisher.swift, ImageRequestKeys.swift, LinkedList.swift, Log.swift, Operation.swift, RateLimiter.swift, ResumableData.swift, DataLoader.swift, DataLoading.swift, ImagePipeline+Cache.swift, ImagePipeline+Configuration.swift, ImagePipeline+Delegate.swift, ImagePipeline+Error.swift, ImagePipeline.swift, ImagePrefetcher.swift, ImageDecompression.swift, ImageProcessing.swift, ImageProcessingOptions.swift, ImageProcessors+Anonymous.swift, ImageProcessors+Circle.swift, ImageProcessors+Composition.swift, ImageProcessors+CoreImage.swift, ImageProcessors+GaussianBlur.swift, ImageProcessors+Resize.swift, ImageProcessors+RoundedCorners.swift, ImageProcessors.swift, AsyncPipelineTask.swift, AsyncTask.swift, TaskFetchOriginalData.swift, TaskFetchOriginalImage.swift, TaskFetchWithPublisher.swift, TaskLoadData.swift, TaskLoadImage.swift (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0032940Z +2025-08-16T21:03:24.0033230Z SwiftDriver\ Compilation\ Requirements Nuke normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0033790Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:24.0044130Z builtin-Swift-Compilation-Requirements -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Nuke -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name nuke -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:24.0060290Z +2025-08-16T21:03:24.0061290Z SwiftMergeGeneratedHeaders /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Nuke-Swift.h /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0062570Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:24.0063730Z builtin-swiftHeaderTool -arch arm64 /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Nuke-Swift.h +2025-08-16T21:03:24.0064750Z +2025-08-16T21:03:24.0065640Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/arm64-apple-ios.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0066780Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:24.0068550Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/arm64-apple-ios.swiftmodule +2025-08-16T21:03:24.0070090Z +2025-08-16T21:03:24.0070990Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/arm64-apple-ios.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftdoc (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0072140Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:24.0074580Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/arm64-apple-ios.swiftdoc +2025-08-16T21:03:24.0076780Z +2025-08-16T21:03:24.0078960Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/arm64-apple-ios.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.abi.json (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0080170Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:24.0081960Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/arm64-apple-ios.abi.json +2025-08-16T21:03:24.0083460Z +2025-08-16T21:03:24.0084430Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftsourceinfo (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0085670Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:24.0087440Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +2025-08-16T21:03:24.0089030Z +2025-08-16T21:03:24.0089430Z Ld /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.o normal (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:24.0090060Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:24.0097080Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -Os -w -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -L/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -filelist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_lto.o -Xlinker -dependency_info -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.o +2025-08-16T21:03:24.0103040Z +2025-08-16T21:03:24.0103330Z SwiftDriver NukeUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:24.0103770Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:24.0126510Z builtin-SwiftDriver -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name NukeUI -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name nuke -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:24.0149240Z +2025-08-16T21:03:24.0149950Z SwiftDriver\ Compilation NukeUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:24.0150460Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:24.0166630Z builtin-Swift-Compilation -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name NukeUI -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name nuke -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:24.0179020Z +2025-08-16T21:03:24.0181500Z SwiftCompile normal arm64 Compiling\ FetchImage.swift,\ Internal.swift,\ LazyImage.swift,\ LazyImageState.swift,\ LazyImageView.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/NukeUI/FetchImage.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/NukeUI/Internal.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/NukeUI/LazyImage.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/NukeUI/LazyImageState.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke/Sources/NukeUI/LazyImageView.swift (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:24.0183780Z +2025-08-16T21:03:24.0183910Z CompileSwift normal arm64 (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:24.0185230Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:24.0185470Z +2025-08-16T21:03:25.8192660Z +2025-08-16T21:03:25.8416750Z ExtractAppIntentsMetadata (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:25.8556100Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:25.8565740Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Nuke --sdk-root /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk --xcode-version 16F6 --platform-family iOS --deployment-target 13.0 --bundle-identifier nuke.Nuke --output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.o --dependency-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke_dependency_info.dat --stringsdata-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList --metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.DependencyMetadataFileList --static-metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Nuke.DependencyStaticMetadataFileList --swift-const-vals-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/Nuke.build/Objects-normal/arm64/Nuke.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization +2025-08-16T21:03:25.8700430Z 2025-08-16 21:03:23.683 appintentsmetadataprocessor[2613:13083] Starting appintentsmetadataprocessor export +2025-08-16T21:03:25.8807340Z 2025-08-16 21:03:23.743 appintentsmetadataprocessor[2613:13083] Extracted no relevant App Intents symbols, skipping writing output +2025-08-16T21:03:25.8910020Z +2025-08-16T21:03:25.9024990Z RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.o (in target 'Nuke' from project 'Nuke') +2025-08-16T21:03:25.9142040Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:25.9244790Z builtin-RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Nuke.o +2025-08-16T21:03:25.9350960Z +2025-08-16T21:03:25.9452240Z SwiftDriverJobDiscovery normal arm64 Compiling FetchImage.swift, Internal.swift, LazyImage.swift, LazyImageState.swift, LazyImageView.swift (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:25.9553360Z +2025-08-16T21:03:25.9627690Z SwiftDriver\ Compilation\ Requirements NukeUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:25.9736040Z cd /Users/runner/work/Sora/Sora/Sulfur.xcodeproj +2025-08-16T21:03:25.9850900Z builtin-Swift-Compilation-Requirements -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name NukeUI -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftFileList -DSWIFT_PACKAGE -DXcode -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -suppress-warnings -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -I /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -package-name nuke -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_const_extract_protocols.json -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-Swift.h -working-directory /Users/runner/work/Sora/Sora/Sulfur.xcodeproj -no-emit-module-separately-wmo +2025-08-16T21:03:25.9964110Z +2025-08-16T21:03:26.0068740Z SwiftMergeGeneratedHeaders /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/NukeUI-Swift.h /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-Swift.h (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:26.0171500Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:26.0289570Z builtin-swiftHeaderTool -arch arm64 /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI-Swift.h -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/NukeUI-Swift.h +2025-08-16T21:03:26.0432750Z +2025-08-16T21:03:26.0541300Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/arm64-apple-ios.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftmodule (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:26.0682000Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:26.0795600Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftmodule /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/arm64-apple-ios.swiftmodule +2025-08-16T21:03:26.0902650Z +2025-08-16T21:03:26.1012970Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/arm64-apple-ios.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftdoc (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:26.1153270Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:26.1268910Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftdoc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/arm64-apple-ios.swiftdoc +2025-08-16T21:03:26.1396800Z +2025-08-16T21:03:26.1518210Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/arm64-apple-ios.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.abi.json (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:26.1622700Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:26.1722500Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.abi.json /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/arm64-apple-ios.abi.json +2025-08-16T21:03:26.1824170Z +2025-08-16T21:03:26.1926740Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftsourceinfo (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:26.2026330Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:26.2132730Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -strip-unsigned-binaries -strip-deterministic -strip-tool /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/strip -resolve-src-symlinks -rename /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftsourceinfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +2025-08-16T21:03:26.2230600Z +2025-08-16T21:03:26.2329860Z Ld /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.o normal (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:26.2433120Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:26.2546890Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -Os -w -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -L/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -L/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/EagerLinkingTBDs/Release-iphoneos -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk/Developer/Library/Frameworks -filelist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_lto.o -Xlinker -dependency_info -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.swiftmodule -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.o +2025-08-16T21:03:26.2641130Z +2025-08-16T21:03:26.2743660Z MkDir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:26.2846380Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:26.2954120Z /bin/mkdir -p /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned +2025-08-16T21:03:26.3057400Z +2025-08-16T21:03:26.3161250Z MkDir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/unthinned (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:26.3264750Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:26.3366470Z /bin/mkdir -p /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/unthinned +2025-08-16T21:03:26.3466950Z +2025-08-16T21:03:26.3570010Z GenerateAssetSymbols /Users/runner/work/Sora/Sora/Sora/Preview\ Content/Preview\ Assets.xcassets /Users/runner/work/Sora/Sora/Sora/Assets.xcassets (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:26.3669350Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:26.3776870Z /Applications/Xcode_16.4.app/Contents/Developer/usr/bin/actool /Users/runner/work/Sora/Sora/Sora/Preview\ Content/Preview\ Assets.xcassets /Users/runner/work/Sora/Sora/Sora/Assets.xcassets --compile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app --output-format human-readable-text --notices --warnings --export-dependency-info /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_dependencies --output-partial-info-plist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 15.0 --platform iphoneos --bundle-identifier me.cranci.sulfur --generate-swift-asset-symbol-extensions NO --generate-swift-asset-symbols /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.swift --generate-objc-asset-symbols /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.h --generate-asset-symbol-index /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols-Index.plist +2025-08-16T21:03:26.3888840Z /* com.apple.actool.compilation-results */ +2025-08-16T21:03:26.3992070Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols-Index.plist +2025-08-16T21:03:26.4094950Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.h +2025-08-16T21:03:26.4197670Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.swift +2025-08-16T21:03:26.4300040Z +2025-08-16T21:03:26.4402100Z +2025-08-16T21:03:26.4504820Z CompileAssetCatalogVariant thinned /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app /Users/runner/work/Sora/Sora/Sora/Preview\ Content/Preview\ Assets.xcassets /Users/runner/work/Sora/Sora/Sora/Assets.xcassets (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:26.4606470Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:26.4712190Z /Applications/Xcode_16.4.app/Contents/Developer/usr/bin/actool /Users/runner/work/Sora/Sora/Sora/Preview\ Content/Preview\ Assets.xcassets /Users/runner/work/Sora/Sora/Sora/Assets.xcassets --compile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned --output-format human-readable-text --notices --warnings --export-dependency-info /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_dependencies_thinned --output-partial-info-plist /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist_thinned --app-icon AppIcon --accent-color AccentColor --compress-pngs --enable-on-demand-resources YES --development-region en --target-device iphone --target-device ipad --minimum-deployment-target 15.0 --platform iphoneos +2025-08-16T21:03:40.9424100Z /* com.apple.actool.compilation-results */ +2025-08-16T21:03:40.9528580Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist_thinned +2025-08-16T21:03:40.9630420Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned/AppIcon60x60@2x.png +2025-08-16T21:03:40.9730910Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned/AppIcon76x76@2x~ipad.png +2025-08-16T21:03:40.9834680Z /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned/Assets.car +2025-08-16T21:03:40.9923520Z +2025-08-16T21:03:41.0027640Z +2025-08-16T21:03:41.0131210Z ExtractAppIntentsMetadata (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:03:41.0216540Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:03:41.0222830Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name NukeUI --sdk-root /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk --xcode-version 16F6 --platform-family iOS --deployment-target 13.0 --bundle-identifier nuke.NukeUI --output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.o --dependency-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI_dependency_info.dat --stringsdata-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftFileList --metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.DependencyMetadataFileList --static-metadata-file-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/NukeUI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Nuke.build/Release-iphoneos/NukeUI.build/Objects-normal/arm64/NukeUI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization +2025-08-16T21:03:41.0229250Z 2025-08-16 21:03:25.911 appintentsmetadataprocessor[2667:13398] Starting appintentsmetadataprocessor export +2025-08-16T21:03:41.0254630Z 2025-08-16 21:03:25.988 appintentsmetadataprocessor[2667:13398] Extracted no relevant App Intents symbols, skipping writing output +2025-08-16T21:03:41.0255040Z +2025-08-16T21:03:41.0255290Z SwiftDriver Sulfur normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:41.0255780Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:41.0284500Z builtin-SwiftDriver -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Sulfur -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.SwiftFileList -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64 -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur_const_extract_protocols.json -Xcc -iquote -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-generated-files.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-own-target-headers.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur-9457afc69bd11dfe7a08eee3557a7685-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-project-headers.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur-Swift.h -working-directory /Users/runner/work/Sora/Sora -no-emit-module-separately-wmo +2025-08-16T21:03:41.0317870Z +2025-08-16T21:03:41.0393700Z SwiftCompile normal arm64 Compiling\ SettingsViewBackup.swift,\ SettingsViewPlayer.swift,\ ReaderView.swift,\ DownloadManager.swift,\ TMDBMatchView.swift,\ Analytics.swift,\ VideoPlayer.swift,\ finTopView.swift,\ Logger.swift,\ ChapterCell.swift,\ Shimmer.swift,\ ModuleManager.swift,\ SettingsView.swift,\ JSController-Search.swift,\ JSController-Novel.swift,\ CommunityLib.swift,\ String.swift,\ ProgressiveBlurView.swift,\ VolumeSlider.swift,\ Notification+Name.swift,\ ContinueReadingItem.swift,\ ContinueReadingManager.swift,\ URL.swift,\ SettingsViewLibrary.swift,\ TMDB-FetchID.swift,\ BookmarkCell.swift,\ SettingsViewData.swift,\ SearchViewComponents.swift,\ SettingsViewLoggerFilter.swift,\ AnilistMatchView.swift,\ NormalPlayer.swift,\ Modules.swift,\ WebAuthenticationManager.swift,\ DeviceScaleModifier.swift,\ SubtitleSettingsManager.swift,\ ContentView.swift,\ ModuleAdditionSettingsView.swift,\ ContinueWatchingItem.swift,\ VTTSubtitlesLoader.swift,\ BookmarkCollectionGridCell.swift,\ CollectionDetailView.swift,\ Double+Extension.swift,\ MediaInfoView.swift,\ TabItem.swift,\ SplashScreenView.swift,\ JSController-Streams.swift,\ SettingsViewGeneral.swift,\ AllWatching.swift,\ AllReading.swift,\ ContinueReadingSection.swift,\ SkeletonCell.swift,\ DropManager.swift,\ View.swift,\ DownloadView.swift,\ UIDevice+Model.swift,\ EpisodeCell.swift,\ JSController-Downloads.swift,\ SearchView.swift,\ CollectionPickerView.swift,\ VideoWatchingActivity.swift,\ Anilist-Token.swift,\ MusicProgressSlider.swift,\ JSController-HeaderManager.swift,\ JSController.swift,\ URLSession.swift,\ BookmarksDetailView.swift,\ SettingsViewModule.swift,\ Trakt-Login.swift,\ LibraryManager.swift,\ Trakt-Token.swift,\ SettingsViewAbout.swift,\ LibraryView.swift,\ TraktPushUpdates.swift,\ SoraApp.swift,\ CircularProgressBar.swift,\ Anilist-Login.swift,\ JavaScriptCore+Extensions.swift,\ JSController-Details.swift,\ AniListPushUpdates.swift,\ CustomPlayer.swift,\ JSController-StreamTypeDownload.swift,\ SearchStateView.swift,\ Bundle+Language.swift,\ LocalizationManager.swift,\ DownloadPersistence.swift,\ SearchResultsGrid.swift,\ JSController+Downloader.swift,\ SearchComponents.swift,\ SettingsViewLogger.swift,\ TabBar.swift,\ SettingsViewDownloads.swift,\ SettingsViewTrackers.swift,\ DownloadModels.swift,\ M3U8StreamExtractor.swift,\ ContinueWatchingManager.swift,\ UserDefaults.swift,\ OrphanedDownloadsView.swift,\ BookmarkGridView.swift,\ BookmarkLink.swift,\ BookmarkGridItemView.swift,\ GeneratedAssetSymbols.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewBackup.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewPlayer.swift /Users/runner/work/Sora/Sora/Sora/Views/ReaderView/ReaderView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/DownloadManager.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/TMDBMatchView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Analytics/Analytics.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/NormalPlayer/VideoPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/finTopView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Logger/Logger.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/ChapterCell/ChapterCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/SkeletonCells/Shimmer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/ModuleManager.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Search.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Novel.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/CommunityLib.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/String.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/ProgressiveBlurView/ProgressiveBlurView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/VolumeSlider.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/Notification+Name.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueReadingItem.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueReadingManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/URL.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLibrary.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/TMDB/TMDB-FetchID.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkCell.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewData.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchViewComponents.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLoggerFilter.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/NormalPlayer/NormalPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/Modules.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/WebAuthentication/WebAuthenticationManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/ViewModifiers/DeviceScaleModifier.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Helpers/SubtitleSettingsManager.swift /Users/runner/work/Sora/Sora/Sora/ContentView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/ModuleAdditionSettingsView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueWatchingItem.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Helpers/VTTSubtitlesLoader.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkCollectionGridCell.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/CollectionDetailView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/Double+Extension.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Models/TabItem.swift /Users/runner/work/Sora/Sora/Sora/Views/SplashScreenView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Streams.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/AllWatching.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/AllReading.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/ContinueReadingSection.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/SkeletonCells/SkeletonCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Drops/DropManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/View.swift /Users/runner/work/Sora/Sora/Sora/Views/DownloadView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/UIDevice+Model.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController-Downloads.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/CollectionPickerView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/SharePlay/VideoWatchingActivity.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/AniList/Auth/Anilist-Token.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/MusicProgressSlider.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController-HeaderManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/URLSession.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarksDetailView.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewModule.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/Trakt/Auth/Trakt-Login.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/LibraryManager.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/Trakt/Auth/Trakt-Token.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/LibraryView.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/Trakt/Mutations/TraktPushUpdates.swift /Users/runner/work/Sora/Sora/Sora/SoraApp.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/CircularProgressBar.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/AniList/Auth/Anilist-Login.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/JavaScriptCore+Extensions.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Details.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/AniList/Mutations/AniListPushUpdates.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController-StreamTypeDownload.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchStateView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/Bundle+Language.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/LocalizationManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/DownloadPersistence.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchResultsGrid.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController+Downloader.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchComponents.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLogger.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/TabBar/TabBar.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewDownloads.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewTrackers.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/DownloadModels.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/M3U8StreamExtractor.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueWatchingManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/UserDefaults.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/OrphanedDownloadsView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkLink.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridItemView.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:41.0566760Z CompileSwift normal arm64 (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:03:41.0567110Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:03:41.0567930Z +2025-08-16T21:06:39.7959000Z /Users/runner/work/Sora/Sora/Sora/Views/ReaderView/ReaderView.swift:333:11: warning: 'catch' block is unreachable because no errors are thrown in 'do' block +2025-08-16T21:06:39.8014980Z } catch { +2025-08-16T21:06:39.8033380Z ^ +2025-08-16T21:06:39.8034340Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/Logger/Logger.swift:65:30: warning: capture of 'self' with non-sendable type 'Logger' in a '@Sendable' closure +2025-08-16T21:06:39.8099140Z let result = self.logs.map { "[\(dateFormatter.string(from: $0.timestamp))] [\($0.type)] \($0.message)" } +2025-08-16T21:06:39.8100560Z ^ +2025-08-16T21:06:39.8101130Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/Logger/Logger.swift:10:7: note: class 'Logger' does not conform to the 'Sendable' protocol +2025-08-16T21:06:39.8101740Z class Logger { +2025-08-16T21:06:39.8101970Z ^ +2025-08-16T21:06:39.8102510Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/Logger/Logger.swift:82:17: warning: capture of 'self' with non-sendable type 'Logger' in a '@Sendable' closure +2025-08-16T21:06:39.8103640Z self.logs.removeAll() +2025-08-16T21:06:39.8104020Z ^ +2025-08-16T21:06:39.8104540Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/Logger/Logger.swift:10:7: note: class 'Logger' does not conform to the 'Sendable' protocol +2025-08-16T21:06:39.8105070Z class Logger { +2025-08-16T21:06:39.8105720Z ^ +2025-08-16T21:06:39.8106340Z /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsView.swift:468:97: warning: conditional cast from '[String]' to '[String]' always succeeds +2025-08-16T21:06:39.8115700Z if let lprojPaths = mainBundle.paths(forResourcesOfType: "lproj", inDirectory: nil) as? [String] { +2025-08-16T21:06:39.8116370Z ^ +2025-08-16T21:06:39.8117320Z /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsView.swift:486:97: warning: conditional cast from '[String]' to '[String]' always succeeds +2025-08-16T21:06:39.8118220Z if let lprojPaths = mainBundle.paths(forResourcesOfType: "lproj", inDirectory: nil) as? [String] { +2025-08-16T21:06:39.8118940Z ^ +2025-08-16T21:06:39.8119810Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/Modules/CommunityLib.swift:76:25: warning: 'javaScriptEnabled' was deprecated in iOS 14.0: Use WKWebpagePreferences.allowsContentJavaScript to disable content JavaScript on a per-navigation basis +2025-08-16T21:06:39.8121110Z cfg.preferences.javaScriptEnabled = true +2025-08-16T21:06:39.8121520Z ^ +2025-08-16T21:06:39.8122360Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift:30:25: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions +2025-08-16T21:06:39.8123130Z var body: some View { +2025-08-16T21:06:39.8123360Z ^ +2025-08-16T21:06:39.8124250Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift:860:57: error: contextual closure type '(Int, Int?, String) -> Void' expects 3 arguments, but 2 were used in closure body +2025-08-16T21:06:39.8125020Z AnilistMatchPopupView(seriesTitle: title) { id, matched in +2025-08-16T21:06:39.8125400Z ^ +2025-08-16T21:06:39.8125750Z ,<#arg#> +2025-08-16T21:06:39.8126300Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift:862:32: error: cannot assign value of type 'Int?' to type 'String?' +2025-08-16T21:06:39.8126880Z matchedTitle = matched +2025-08-16T21:06:39.8127180Z ^~~~~~~ +2025-08-16T21:06:39.8129540Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift:1021:11: warning: 'catch' block is unreachable because no errors are thrown in 'do' block +2025-08-16T21:06:39.8130960Z } catch let loadError { +2025-08-16T21:06:39.8131180Z ^ +2025-08-16T21:06:39.8132020Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift:1957:13: warning: immutable value 'episode' was never used; consider replacing with '_' or removing it +2025-08-16T21:06:39.8132690Z let episode: EpisodeLink? = { +2025-08-16T21:06:39.8133040Z ^~~~~~~ +2025-08-16T21:06:39.8133270Z _ +2025-08-16T21:06:39.8134420Z /Users/runner/work/Sora/Sora/Sora/Views/DownloadView.swift:1435:13: warning: initialization of immutable value 'velocity' was never used; consider replacing with assignment to '_' or removing it +2025-08-16T21:06:39.8135180Z let velocity = value.velocity +2025-08-16T21:06:39.8135520Z ~~~~^~~~~~~~ +2025-08-16T21:06:39.8135880Z _ +2025-08-16T21:06:39.8136550Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift:384:13: warning: initialization of immutable value 'velocity' was never used; consider replacing with assignment to '_' or removing it +2025-08-16T21:06:39.8137790Z let velocity = value.velocity +2025-08-16T21:06:39.8138120Z ~~~~^~~~~~~~ +2025-08-16T21:06:39.8138360Z _ +2025-08-16T21:06:39.8139250Z /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift:960:13: warning: initialization of immutable value 'episodeNumber' was never used; consider replacing with assignment to '_' or removing it +2025-08-16T21:06:39.8140230Z let episodeNumber = episodeID + 1 +2025-08-16T21:06:39.8140590Z ~~~~^~~~~~~~~~~~~ +2025-08-16T21:06:39.8140900Z _ +2025-08-16T21:06:39.8142310Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/JSLoader/Downloads/JSController-Downloads.swift:1508:10: warning: sendability of function types in instance method 'urlSession(_:task:didReceive:completionHandler:)' does not match requirement in protocol 'URLSessionTaskDelegate'; this is an error in the Swift 6 language mode +2025-08-16T21:06:39.8146360Z func urlSession(_ session: URLSession, task: URLSessionTask, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) { +2025-08-16T21:06:39.8147120Z ^ +2025-08-16T21:06:39.8147620Z Foundation.URLSessionTaskDelegate.urlSession:2:15: note: expected sendability to match requirement here +2025-08-16T21:06:39.8148530Z optional func urlSession(_ session: URLSession, task: URLSessionTask, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping @MainActor @Sendable (URLSession.AuthChallengeDisposition, URLCredential?) -> Void)} +2025-08-16T21:06:39.8149310Z ^ +2025-08-16T21:06:39.8150070Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/JSLoader/Downloads/JSController-Downloads.swift:1383:16: warning: value 'assetDownloadTask' was defined but never used; consider replacing with boolean test +2025-08-16T21:06:39.8150790Z if let assetDownloadTask = task as? AVAssetDownloadTask { +2025-08-16T21:06:39.8151090Z ~~~~^~~~~~~~~~~~~~~~~~~~ ~~~ +2025-08-16T21:06:39.8151290Z is +2025-08-16T21:06:39.8152060Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/JSLoader/Downloads/JSController-Downloads.swift:1442:19: warning: value 'downloadID' was defined but never used; consider replacing with boolean test +2025-08-16T21:06:39.8152760Z guard let downloadID = activeDownloadMap[assetDownloadTask] else { +2025-08-16T21:06:39.8153080Z ~~~~^~~~~~~~~~~~~ +2025-08-16T21:06:39.8153390Z != nil +2025-08-16T21:06:39.8154000Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:460:26: warning: 'showsRouteButton' was deprecated in iOS 13.0: Use AVRoutePickerView instead. +2025-08-16T21:06:39.8154680Z hiddenVolumeView.showsRouteButton = false +2025-08-16T21:06:39.8161610Z ^ +2025-08-16T21:06:39.8162300Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:803:49: warning: 'unarchiveTopLevelObjectWithData' was deprecated in iOS 12.0: Use unarchivedObject(ofClass:from:) instead +2025-08-16T21:06:39.8163130Z let uiColor = try? NSKeyedUnarchiver.unarchiveTopLevelObjectWithData(data) as? UIColor { +2025-08-16T21:06:39.8163600Z ^ +2025-08-16T21:06:39.8164550Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1268:65: warning: comparing non-optional value of type 'Int' to 'nil' always returns false +2025-08-16T21:06:39.8165300Z let isSingleSeason = (seasonNumber == 1 || seasonNumber == nil) +2025-08-16T21:06:39.8182270Z ~~~~~~~~~~~~ ^ ~~~ +2025-08-16T21:06:39.8183130Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1270:65: warning: left side of nil coalescing operator '??' has non-optional type 'Int', so the right side is never used +2025-08-16T21:06:39.8183920Z let seasonPart = isSingleSeason ? "" : "S\(seasonNumber ?? 1)" +2025-08-16T21:06:39.8185120Z ~~~~~~~~~~~~~^~~~ +2025-08-16T21:06:39.8185450Z +2025-08-16T21:06:39.8186140Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1348:41: warning: cast from 'GradientBlurButton' to unrelated type 'UIVisualEffectView' always fails +2025-08-16T21:06:39.8187700Z if let blurView = volumeCapsule as? UIVisualEffectView { +2025-08-16T21:06:39.8188010Z ~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~ +2025-08-16T21:06:39.8189640Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1408:28: warning: 'contentEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration +2025-08-16T21:06:39.8190530Z holdSpeedIndicator.contentEdgeInsets = UIEdgeInsets(top: 6, left: 10, bottom: 6, right: 10) +2025-08-16T21:06:39.8192380Z ^ +2025-08-16T21:06:39.8193160Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1703:25: warning: 'contentEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration +2025-08-16T21:06:39.8194950Z skipIntroButton.contentEdgeInsets = UIEdgeInsets(top: 6, left: 10, bottom: 6, right: 10) +2025-08-16T21:06:39.8195430Z ^ +2025-08-16T21:06:39.8196960Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1725:25: warning: 'contentEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration +2025-08-16T21:06:39.8198870Z skipOutroButton.contentEdgeInsets = UIEdgeInsets(top: 6, left: 10, bottom: 6, right: 10) +2025-08-16T21:06:39.8199350Z ^ +2025-08-16T21:06:39.8201010Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:1743:22: warning: 'contentEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration +2025-08-16T21:06:39.8202330Z skip85Button.contentEdgeInsets = UIEdgeInsets(top: 6, left: 10, bottom: 6, right: 10) +2025-08-16T21:06:39.8202750Z ^ +2025-08-16T21:06:39.8203380Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3185:13: warning: 'init(input:modifierFlags:action:discoverabilityTitle:)' was deprecated in iOS 13.0 +2025-08-16T21:06:39.8204680Z UIKeyCommand(input: " ", modifierFlags: [], action: #selector(handleSpaceKey), discoverabilityTitle: "Play/Pause"), +2025-08-16T21:06:39.8205180Z ^ +2025-08-16T21:06:39.8205880Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3186:13: warning: 'init(input:modifierFlags:action:discoverabilityTitle:)' was deprecated in iOS 13.0 +2025-08-16T21:06:39.8207360Z UIKeyCommand(input: UIKeyCommand.inputLeftArrow, modifierFlags: [], action: #selector(handleLeftArrow), discoverabilityTitle: "Seek Backward 10s"), +2025-08-16T21:06:39.8207920Z ^ +2025-08-16T21:06:39.8208600Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3187:13: warning: 'init(input:modifierFlags:action:discoverabilityTitle:)' was deprecated in iOS 13.0 +2025-08-16T21:06:39.8209890Z UIKeyCommand(input: UIKeyCommand.inputRightArrow, modifierFlags: [], action: #selector(handleRightArrow), discoverabilityTitle: "Seek Forward 10s"), +2025-08-16T21:06:39.8210480Z ^ +2025-08-16T21:06:39.8211450Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3188:13: warning: 'init(input:modifierFlags:action:discoverabilityTitle:)' was deprecated in iOS 13.0 +2025-08-16T21:06:39.8212500Z UIKeyCommand(input: UIKeyCommand.inputUpArrow, modifierFlags: [], action: #selector(handleUpArrow), discoverabilityTitle: "Seek Forward 60s"), +2025-08-16T21:06:39.8213100Z ^ +2025-08-16T21:06:39.8213740Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3189:13: warning: 'init(input:modifierFlags:action:discoverabilityTitle:)' was deprecated in iOS 13.0 +2025-08-16T21:06:39.8214670Z UIKeyCommand(input: UIKeyCommand.inputDownArrow, modifierFlags: [], action: #selector(handleDownArrow), discoverabilityTitle: "Seek Backward 60s"), +2025-08-16T21:06:39.8215360Z ^ +2025-08-16T21:06:39.8215970Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3190:13: warning: 'init(input:modifierFlags:action:discoverabilityTitle:)' was deprecated in iOS 13.0 +2025-08-16T21:06:39.8216840Z UIKeyCommand(input: UIKeyCommand.inputEscape, modifierFlags: [], action: #selector(handleEscape), discoverabilityTitle: "Dismiss Player") +2025-08-16T21:06:39.8217490Z ^ +2025-08-16T21:06:39.8219170Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3572:24: warning: 'imageEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration +2025-08-16T21:06:39.8219930Z button.imageEdgeInsets = .zero +2025-08-16T21:06:39.8220350Z ^ +2025-08-16T21:06:39.8221070Z /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift:3573:24: warning: 'contentEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration +2025-08-16T21:06:39.8221970Z button.contentEdgeInsets = .zero +2025-08-16T21:06:39.8222310Z ^ +2025-08-16T21:06:39.8224440Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/DownloadUtils/DownloadPersistence.swift:49:13: warning: initialization of immutable value 'jsonFile' was never used; consider replacing with assignment to '_' or removing it +2025-08-16T21:06:39.8225210Z let jsonFile = downloadsDir.appendingPathComponent(jsonFileName) +2025-08-16T21:06:39.8225580Z ~~~~^~~~~~~~ +2025-08-16T21:06:39.8226070Z _ +2025-08-16T21:06:39.8226770Z /Users/runner/work/Sora/Sora/Sora/Utlis & Misc/TabBar/TabBar.swift:212:61: warning: initialization of immutable value 'totalWidth' was never used; consider replacing with assignment to '_' or removing it +2025-08-16T21:06:39.8227610Z let totalWidth = tabWidth * CGFloat(tabs.count) +2025-08-16T21:06:39.8229570Z ~~~~^~~~~~~~~~ +2025-08-16T21:06:39.8229940Z _ +2025-08-16T21:06:39.8230110Z +2025-08-16T21:06:39.8784040Z Failed frontend command: +2025-08-16T21:06:39.8995940Z /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewBackup.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewPlayer.swift /Users/runner/work/Sora/Sora/Sora/Views/ReaderView/ReaderView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/DownloadUtils/DownloadManager.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/TMDBMatchView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Analytics/Analytics.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/NormalPlayer/VideoPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/finTopView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Logger/Logger.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/ChapterCell/ChapterCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/SkeletonCells/Shimmer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Modules/ModuleManager.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/JSController-Search.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/JSController-Novel.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Modules/CommunityLib.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/String.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/ProgressiveBlurView/ProgressiveBlurView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/VolumeSlider.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/Notification+Name.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueReadingItem.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueReadingManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/URL.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLibrary.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/TMDB/TMDB-FetchID.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkCell.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewData.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchViewComponents.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLoggerFilter.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/NormalPlayer/NormalPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Modules/Modules.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/WebAuthentication/WebAuthenticationManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/ViewModifiers/DeviceScaleModifier.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Helpers/SubtitleSettingsManager.swift /Users/runner/work/Sora/Sora/Sora/ContentView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Modules/ModuleAdditionSettingsView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueWatchingItem.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Helpers/VTTSubtitlesLoader.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkCollectionGridCell.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/CollectionDetailView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/Double+Extension.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Models/TabItem.swift /Users/runner/work/Sora/Sora/Sora/Views/SplashScreenView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/JSController-Streams.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/AllWatching.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/AllReading.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/ContinueReadingSection.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/SkeletonCells/SkeletonCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Drops/DropManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/View.swift /Users/runner/work/Sora/Sora/Sora/Views/DownloadView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/UIDevice+Model.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/Downloads/JSController-Downloads.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/CollectionPickerView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/SharePlay/VideoWatchingActivity.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/AniList/Auth/Anilist-Token.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/MusicProgressSlider.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/Downloads/JSController-HeaderManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/JSController.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/URLSession.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarksDetailView.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewModule.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/Trakt/Auth/Trakt-Login.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/LibraryManager.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/Trakt/Auth/Trakt-Token.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/LibraryView.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/Trakt/Mutations/TraktPushUpdates.swift /Users/runner/work/Sora/Sora/Sora/SoraApp.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/CircularProgressBar.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/AniList/Auth/Anilist-Login.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/JavaScriptCore+Extensions.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/JSController-Details.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ \&\ Metadata/AniList/Mutations/AniListPushUpdates.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/Downloads/JSController-StreamTypeDownload.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchStateView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/Bundle+Language.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/LocalizationManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/DownloadUtils/DownloadPersistence.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchResultsGrid.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/JSLoader/Downloads/JSController+Downloader.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchComponents.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLogger.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/TabBar/TabBar.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewDownloads.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewTrackers.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/DownloadUtils/DownloadModels.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/DownloadUtils/M3U8StreamExtractor.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueWatchingManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ \&\ Misc/Extensions/UserDefaults.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/OrphanedDownloadsView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkLink.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridItemView.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.swift -supplementary-output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/supplementaryOutputs-4 -emit-localized-strings -emit-localized-strings-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64 -target arm64-apple-ios15.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -no-color-diagnostics -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -O -serialize-debugging-options -const-gather-protocols-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/runner/work/Sora/Sora -resource-dir /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -file-compilation-dir /Users/runner/work/Sora/Sora -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-generated-files.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-own-target-headers.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur-9457afc69bd11dfe7a08eee3557a7685-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-project-headers.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources -module-name Sulfur -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.5 -target-sdk-name iphoneos18.5 -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -enable-default-cmo -num-threads 3 -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewBackup.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewPlayer.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ReaderView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TMDBMatchView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Analytics.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VideoPlayer.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/finTopView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Logger.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ChapterCell.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Shimmer.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ModuleManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Search.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Novel.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CommunityLib.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/String.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ProgressiveBlurView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VolumeSlider.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Notification+Name.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueReadingItem.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueReadingManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/URL.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewLibrary.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TMDB-FetchID.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkCell.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewData.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchViewComponents.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewLoggerFilter.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AnilistMatchView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/NormalPlayer.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Modules.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/WebAuthenticationManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DeviceScaleModifier.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SubtitleSettingsManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContentView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ModuleAdditionSettingsView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueWatchingItem.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VTTSubtitlesLoader.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkCollectionGridCell.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CollectionDetailView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Double+Extension.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/MediaInfoView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TabItem.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SplashScreenView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Streams.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewGeneral.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AllWatching.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AllReading.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueReadingSection.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SkeletonCell.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DropManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/View.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/UIDevice+Model.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/EpisodeCell.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Downloads.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CollectionPickerView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VideoWatchingActivity.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Anilist-Token.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/MusicProgressSlider.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-HeaderManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/URLSession.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarksDetailView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewModule.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Trakt-Login.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/LibraryManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Trakt-Token.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewAbout.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/LibraryView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TraktPushUpdates.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SoraApp.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CircularProgressBar.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Anilist-Login.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JavaScriptCore+Extensions.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Details.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AniListPushUpdates.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CustomPlayer.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-StreamTypeDownload.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchStateView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Bundle+Language.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/LocalizationManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadPersistence.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchResultsGrid.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController+Downloader.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchComponents.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewLogger.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TabBar.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewDownloads.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewTrackers.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadModels.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/M3U8StreamExtractor.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueWatchingManager.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/UserDefaults.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/OrphanedDownloadsView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkGridView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkLink.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkGridItemView.o -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/GeneratedAssetSymbols.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewBackup.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewPlayer.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ReaderView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TMDBMatchView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Analytics.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VideoPlayer.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/finTopView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Logger.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ChapterCell.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Shimmer.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ModuleManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Search.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Novel.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CommunityLib.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/String.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ProgressiveBlurView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VolumeSlider.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Notification+Name.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueReadingItem.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueReadingManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/URL.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewLibrary.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TMDB-FetchID.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkCell.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewData.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchViewComponents.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewLoggerFilter.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AnilistMatchView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/NormalPlayer.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Modules.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/WebAuthenticationManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DeviceScaleModifier.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SubtitleSettingsManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContentView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ModuleAdditionSettingsView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueWatchingItem.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VTTSubtitlesLoader.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkCollectionGridCell.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CollectionDetailView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Double+Extension.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/MediaInfoView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TabItem.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SplashScreenView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Streams.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewGeneral.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AllWatching.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AllReading.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueReadingSection.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SkeletonCell.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DropManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/View.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/UIDevice+Model.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/EpisodeCell.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Downloads.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CollectionPickerView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/VideoWatchingActivity.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Anilist-Token.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/MusicProgressSlider.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-HeaderManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/URLSession.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarksDetailView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewModule.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Trakt-Login.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/LibraryManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Trakt-Token.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewAbout.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/LibraryView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TraktPushUpdates.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SoraApp.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CircularProgressBar.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Anilist-Login.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JavaScriptCore+Extensions.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-Details.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/AniListPushUpdates.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/CustomPlayer.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController-StreamTypeDownload.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchStateView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Bundle+Language.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/LocalizationManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadPersistence.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchResultsGrid.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/JSController+Downloader.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SearchComponents.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewLogger.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/TabBar.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewDownloads.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/SettingsViewTrackers.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/DownloadModels.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/M3U8StreamExtractor.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/ContinueWatchingManager.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/UserDefaults.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/OrphanedDownloadsView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkGridView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkLink.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/BookmarkGridItemView.o -index-unit-output-path /Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/GeneratedAssetSymbols.o +2025-08-16T21:06:39.9206140Z SwiftDriver\ Compilation Sulfur normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9207540Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9224310Z builtin-Swift-Compilation -- /Applications/Xcode_16.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Sulfur -O -whole-module-optimization -enforce-exclusivity\=checked @/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.SwiftFileList -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode_16.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.5.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex -Xfrontend -serialize-debugging-options -swift-version 5 -I /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/PackageFrameworks -F /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos -emit-localized-strings -emit-localized-strings-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64 -c -num-threads 3 -Xcc -ivfsstatcache -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/SDKStatCaches.noindex/iphoneos18.5-22F76-a529daf784b3616c7c04a36aeb7f5c05.sdkstatcache -output-file-map /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/runner/work/Sora/Sora/build/DerivedDataApp/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur_const_extract_protocols.json -Xcc -iquote -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-generated-files.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-own-target-headers.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur-9457afc69bd11dfe7a08eee3557a7685-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Sulfur-project-headers.hmap -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/include -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources-normal/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/arm64 -Xcc -I/Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources -emit-objc-header -emit-objc-header-path /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/Objects-normal/arm64/Sulfur-Swift.h -working-directory /Users/runner/work/Sora/Sora -no-emit-module-separately-wmo +2025-08-16T21:06:39.9242710Z +2025-08-16T21:06:39.9243670Z RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.o (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:06:39.9244430Z cd /Users/runner/work/Sora/Sora/build/DerivedDataApp/SourcePackages/checkouts/Nuke +2025-08-16T21:06:39.9245100Z builtin-RegisterExecutionPolicyException /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/NukeUI.o +2025-08-16T21:06:39.9246110Z +2025-08-16T21:06:39.9247990Z ValidateDevelopmentAssets /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9250520Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9251580Z builtin-validate-development-assets --validate YES_ERROR /Users/runner/work/Sora/Sora/Sora/Preview\ Content +2025-08-16T21:06:39.9251910Z +2025-08-16T21:06:39.9252650Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/sv.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/sv.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9253590Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9256400Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/sv.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/sv.lproj/Localizable.strings +2025-08-16T21:06:39.9258050Z /Users/runner/work/Sora/Sora/Sora/Localization/sv.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9258740Z +2025-08-16T21:06:39.9259460Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/sk.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/sk.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9260690Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9261620Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/sk.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/sk.lproj/Localizable.strings +2025-08-16T21:06:39.9263770Z /Users/runner/work/Sora/Sora/Sora/Localization/sk.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9265460Z +2025-08-16T21:06:39.9266650Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/ru.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/ru.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9267510Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9268410Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/ru.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/ru.lproj/Localizable.strings +2025-08-16T21:06:39.9269820Z /Users/runner/work/Sora/Sora/Sora/Localization/ru.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9271920Z +2025-08-16T21:06:39.9273360Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/ro.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/ro.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9275270Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9277370Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/ro.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/ro.lproj/Localizable.strings +2025-08-16T21:06:39.9283140Z /Users/runner/work/Sora/Sora/Sora/Localization/ro.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9284740Z +2025-08-16T21:06:39.9286700Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/nn.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/nn.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9289350Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9293790Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/nn.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/nn.lproj/Localizable.strings +2025-08-16T21:06:39.9296040Z /Users/runner/work/Sora/Sora/Sora/Localization/nn.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9296620Z +2025-08-16T21:06:39.9298900Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/nl.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/nl.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9301480Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9303430Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/nl.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/nl.lproj/Localizable.strings +2025-08-16T21:06:39.9304950Z /Users/runner/work/Sora/Sora/Sora/Localization/nl.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9305420Z +2025-08-16T21:06:39.9306190Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/mn-Cyrl.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/mn-Cyrl.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9307080Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9308130Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/mn-Cyrl.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/mn-Cyrl.lproj/Localizable.strings +2025-08-16T21:06:39.9310890Z /Users/runner/work/Sora/Sora/Sora/Localization/mn-Cyrl.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9311950Z +2025-08-16T21:06:39.9312820Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/kk.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/kk.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9314190Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9315160Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/kk.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/kk.lproj/Localizable.strings +2025-08-16T21:06:39.9317500Z /Users/runner/work/Sora/Sora/Sora/Localization/kk.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9319000Z +2025-08-16T21:06:39.9324380Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/it.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/it.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9325330Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9326350Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/it.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/it.lproj/Localizable.strings +2025-08-16T21:06:39.9327750Z /Users/runner/work/Sora/Sora/Sora/Localization/it.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9328300Z +2025-08-16T21:06:39.9329080Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/fr.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/fr.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9329960Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9334550Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/fr.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/fr.lproj/Localizable.strings +2025-08-16T21:06:39.9336080Z /Users/runner/work/Sora/Sora/Sora/Localization/fr.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9336560Z +2025-08-16T21:06:39.9337310Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/es.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/es.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9549050Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9551730Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/es.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/es.lproj/Localizable.strings +2025-08-16T21:06:39.9554800Z /Users/runner/work/Sora/Sora/Sora/Localization/es.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9555300Z +2025-08-16T21:06:39.9555980Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/en.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/en.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9556880Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9557780Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/en.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/en.lproj/Localizable.strings +2025-08-16T21:06:39.9564930Z /Users/runner/work/Sora/Sora/Sora/Localization/en.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9568380Z +2025-08-16T21:06:39.9569830Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/de.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/de.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9570890Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9572180Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/de.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/de.lproj/Localizable.strings +2025-08-16T21:06:39.9573550Z /Users/runner/work/Sora/Sora/Sora/Localization/de.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9574180Z +2025-08-16T21:06:39.9574930Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/cs.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/cs.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9577350Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9579160Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/cs.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/cs.lproj/Localizable.strings +2025-08-16T21:06:39.9581530Z /Users/runner/work/Sora/Sora/Sora/Localization/cs.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9582310Z +2025-08-16T21:06:39.9583140Z CopyStringsFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/ar.lproj/Localizable.strings /Users/runner/work/Sora/Sora/Sora/Localization/ar.lproj/Localizable.strings (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9584530Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9588450Z builtin-copyStrings --validate --outputencoding binary --outfilename Localizable.strings --outdir /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/ar.lproj -- /Users/runner/work/Sora/Sora/Sora/Localization/ar.lproj/Localizable.strings +2025-08-16T21:06:39.9610670Z /Users/runner/work/Sora/Sora/Sora/Localization/ar.lproj/Localizable.strings:1:1: note: detected encoding of input file as Unicode (UTF-8) (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9612170Z +2025-08-16T21:06:39.9615400Z Copy /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/MarqueeLabel_MarqueeLabel.bundle /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9617290Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9618330Z builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/MarqueeLabel_MarqueeLabel.bundle /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app +2025-08-16T21:06:39.9620820Z +2025-08-16T21:06:39.9621330Z LinkAssetCatalog /Users/runner/work/Sora/Sora/Sora/Preview\ Content/Preview\ Assets.xcassets /Users/runner/work/Sora/Sora/Sora/Assets.xcassets (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9621920Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9651700Z builtin-linkAssetCatalog --thinned /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/thinned --thinned-dependencies /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist_unthinned --output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app --plist-output /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist +2025-08-16T21:06:39.9658230Z note: Emplaced /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/AppIcon60x60@2x.png (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9659200Z note: Emplaced /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/Assets.car (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9660290Z note: Emplaced /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/AppIcon76x76@2x~ipad.png (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9660980Z +2025-08-16T21:06:39.9661620Z ProcessInfoPlistFile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/Info.plist /Users/runner/work/Sora/Sora/Sora/Info.plist (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9662610Z cd /Users/runner/work/Sora/Sora +2025-08-16T21:06:39.9665020Z builtin-infoPlistUtility /Users/runner/work/Sora/Sora/Sora/Info.plist -producttype com.apple.product-type.application -genpkginfo /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/PkgInfo -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/assetcatalog_generated_info.plist -scanforprivacyfile /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/MarqueeLabel_MarqueeLabel.bundle -requiredArchitecture arm64 -o /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Products/Release-iphoneos/Sulfur.app/Info.plist +2025-08-16T21:06:39.9667420Z +2025-08-16T21:06:39.9667640Z ** BUILD FAILED ** +2025-08-16T21:06:39.9667870Z +2025-08-16T21:06:39.9668200Z note: Disabling previews because SWIFT_VERSION is set and SWIFT_OPTIMIZATION_LEVEL=-O, expected -Onone (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9678690Z +2025-08-16T21:06:39.9679190Z note: Disabling previews because SWIFT_VERSION is set and SWIFT_OPTIMIZATION_LEVEL=-Owholemodule, expected -Onone (in target 'SoraCore' from project 'SoraCore') +2025-08-16T21:06:39.9703000Z The following build commands failed: +2025-08-16T21:06:39.9703670Z note: Disabling previews because SWIFT_VERSION is set and SWIFT_OPTIMIZATION_LEVEL=-Owholemodule, expected -Onone (in target 'NukeUI' from project 'Nuke') +2025-08-16T21:06:39.9707580Z CompileSwift normal arm64 (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9708350Z note: Disabling previews because SWIFT_VERSION is set and SWIFT_OPTIMIZATION_LEVEL=-Owholemodule, expected -Onone (in target 'Nuke' from project 'Nuke') +2025-08-16T21:06:39.9788020Z SwiftCompile normal arm64 Compiling\ SettingsViewBackup.swift,\ SettingsViewPlayer.swift,\ ReaderView.swift,\ DownloadManager.swift,\ TMDBMatchView.swift,\ Analytics.swift,\ VideoPlayer.swift,\ finTopView.swift,\ Logger.swift,\ ChapterCell.swift,\ Shimmer.swift,\ ModuleManager.swift,\ SettingsView.swift,\ JSController-Search.swift,\ JSController-Novel.swift,\ CommunityLib.swift,\ String.swift,\ ProgressiveBlurView.swift,\ VolumeSlider.swift,\ Notification+Name.swift,\ ContinueReadingItem.swift,\ ContinueReadingManager.swift,\ URL.swift,\ SettingsViewLibrary.swift,\ TMDB-FetchID.swift,\ BookmarkCell.swift,\ SettingsViewData.swift,\ SearchViewComponents.swift,\ SettingsViewLoggerFilter.swift,\ AnilistMatchView.swift,\ NormalPlayer.swift,\ Modules.swift,\ WebAuthenticationManager.swift,\ DeviceScaleModifier.swift,\ SubtitleSettingsManager.swift,\ ContentView.swift,\ ModuleAdditionSettingsView.swift,\ ContinueWatchingItem.swift,\ VTTSubtitlesLoader.swift,\ BookmarkCollectionGridCell.swift,\ CollectionDetailView.swift,\ Double+Extension.swift,\ MediaInfoView.swift,\ TabItem.swift,\ SplashScreenView.swift,\ JSController-Streams.swift,\ SettingsViewGeneral.swift,\ AllWatching.swift,\ AllReading.swift,\ ContinueReadingSection.swift,\ SkeletonCell.swift,\ DropManager.swift,\ View.swift,\ DownloadView.swift,\ UIDevice+Model.swift,\ EpisodeCell.swift,\ JSController-Downloads.swift,\ SearchView.swift,\ CollectionPickerView.swift,\ VideoWatchingActivity.swift,\ Anilist-Token.swift,\ MusicProgressSlider.swift,\ JSController-HeaderManager.swift,\ JSController.swift,\ URLSession.swift,\ BookmarksDetailView.swift,\ SettingsViewModule.swift,\ Trakt-Login.swift,\ LibraryManager.swift,\ Trakt-Token.swift,\ SettingsViewAbout.swift,\ LibraryView.swift,\ TraktPushUpdates.swift,\ SoraApp.swift,\ CircularProgressBar.swift,\ Anilist-Login.swift,\ JavaScriptCore+Extensions.swift,\ JSController-Details.swift,\ AniListPushUpdates.swift,\ CustomPlayer.swift,\ JSController-StreamTypeDownload.swift,\ SearchStateView.swift,\ Bundle+Language.swift,\ LocalizationManager.swift,\ DownloadPersistence.swift,\ SearchResultsGrid.swift,\ JSController+Downloader.swift,\ SearchComponents.swift,\ SettingsViewLogger.swift,\ TabBar.swift,\ SettingsViewDownloads.swift,\ SettingsViewTrackers.swift,\ DownloadModels.swift,\ M3U8StreamExtractor.swift,\ ContinueWatchingManager.swift,\ UserDefaults.swift,\ OrphanedDownloadsView.swift,\ BookmarkGridView.swift,\ BookmarkLink.swift,\ BookmarkGridItemView.swift,\ GeneratedAssetSymbols.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewBackup.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewPlayer.swift /Users/runner/work/Sora/Sora/Sora/Views/ReaderView/ReaderView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/DownloadManager.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/TMDBMatchView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Analytics/Analytics.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/NormalPlayer/VideoPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/finTopView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Logger/Logger.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/ChapterCell/ChapterCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/SkeletonCells/Shimmer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/ModuleManager.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Search.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Novel.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/CommunityLib.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/String.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/ProgressiveBlurView/ProgressiveBlurView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/VolumeSlider.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/Notification+Name.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueReadingItem.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueReadingManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/URL.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLibrary.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/TMDB/TMDB-FetchID.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkCell.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewData.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchViewComponents.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLoggerFilter.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/NormalPlayer/NormalPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/Modules.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/WebAuthentication/WebAuthenticationManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/ViewModifiers/DeviceScaleModifier.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Helpers/SubtitleSettingsManager.swift /Users/runner/work/Sora/Sora/Sora/ContentView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Modules/ModuleAdditionSettingsView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueWatchingItem.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Helpers/VTTSubtitlesLoader.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkCollectionGridCell.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/CollectionDetailView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/Double+Extension.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/MediaInfoView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Models/TabItem.swift /Users/runner/work/Sora/Sora/Sora/Views/SplashScreenView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Streams.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/AllWatching.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/AllReading.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/ContinueReadingSection.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/SkeletonCells/SkeletonCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Drops/DropManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/View.swift /Users/runner/work/Sora/Sora/Sora/Views/DownloadView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/UIDevice+Model.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController-Downloads.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/CollectionPickerView.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/SharePlay/VideoWatchingActivity.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/AniList/Auth/Anilist-Token.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/Components/MusicProgressSlider.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController-HeaderManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/URLSession.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarksDetailView.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewModule.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/Trakt/Auth/Trakt-Login.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/LibraryManager.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/Trakt/Auth/Trakt-Token.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/LibraryView.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/Trakt/Mutations/TraktPushUpdates.swift /Users/runner/work/Sora/Sora/Sora/SoraApp.swift /Users/runner/work/Sora/Sora/Sora/Views/MediaInfoView/EpisodeCell/CircularProgressBar.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/AniList/Auth/Anilist-Login.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/JavaScriptCore+Extensions.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/JSController-Details.swift /Users/runner/work/Sora/Sora/Sora/Tracking\ &\ Metadata/AniList/Mutations/AniListPushUpdates.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController-StreamTypeDownload.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchStateView.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/Bundle+Language.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/LocalizationManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/DownloadPersistence.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchResultsGrid.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/JSLoader/Downloads/JSController+Downloader.swift /Users/runner/work/Sora/Sora/Sora/Views/SearchView/SearchComponents.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLogger.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/TabBar/TabBar.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewDownloads.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/SettingsViewTrackers.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/DownloadModels.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/DownloadUtils/M3U8StreamExtractor.swift /Users/runner/work/Sora/Sora/Sora/MediaUtils/ContinueWatching/ContinueWatchingManager.swift /Users/runner/work/Sora/Sora/Sora/Utlis\ &\ Misc/Extensions/UserDefaults.swift /Users/runner/work/Sora/Sora/Sora/Views/SettingsView/SettingsSubViews/OrphanedDownloadsView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridView.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkLink.swift /Users/runner/work/Sora/Sora/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridItemView.swift /Users/runner/work/Sora/Sora/build/DerivedDataApp/Build/Intermediates.noindex/Sulfur.build/Release-iphoneos/Sulfur.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Sulfur' from project 'Sulfur') +2025-08-16T21:06:39.9847140Z note: Disabling previews because SWIFT_VERSION is set and SWIFT_OPTIMIZATION_LEVEL=-Owholemodule, expected -Onone (in target 'MarqueeLabel' from project 'MarqueeLabel') +2025-08-16T21:06:39.9847900Z Building project Sulfur with scheme Sulfur and configuration Release +2025-08-16T21:06:39.9848300Z (3 failures) +2025-08-16T21:06:39.9848870Z note: Disabling previews because SWIFT_VERSION is set and SWIFT_OPTIMIZATION_LEVEL=-Owholemodule, expected -Onone (in target 'Drops' from project 'Drops') +2025-08-16T21:06:40.0129200Z ##[error]Process completed with exit code 65. +2025-08-16T21:06:40.0455800Z Post job cleanup. +2025-08-16T21:06:40.4309030Z [command]/opt/homebrew/bin/git version +2025-08-16T21:06:40.4595020Z git version 2.50.1 +2025-08-16T21:06:40.4651810Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/6a5c6402-0a66-4232-b000-5b1eb4a79005/.gitconfig' +2025-08-16T21:06:40.4664420Z Temporarily overriding HOME='/Users/runner/work/_temp/6a5c6402-0a66-4232-b000-5b1eb4a79005' before making global git config changes +2025-08-16T21:06:40.4665280Z Adding repository directory to the temporary git global config as a safe directory +2025-08-16T21:06:40.4671630Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/Sora/Sora +2025-08-16T21:06:40.5108520Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-08-16T21:06:40.5834300Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-08-16T21:06:40.7843960Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-08-16T21:06:40.7844820Z http.https://github.com/.extraheader +2025-08-16T21:06:40.7846410Z [command]/opt/homebrew/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-08-16T21:06:40.7850000Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-08-16T21:06:40.9667220Z Cleaning up orphan processes