This repository has been archived by the owner on Oct 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
374 additions
and
426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Use the latest 2.1 version of CircleCI pipeline process engine. | ||
# See: https://circleci.com/docs/2.0/configuration-reference | ||
# For a detailed guide to building and testing on iOS, read the docs: | ||
# https://circleci.com/docs/2.0/testing-ios/ | ||
version: 2.1 | ||
|
||
## Orbs | ||
orbs: | ||
macos: circleci/macos@2 | ||
|
||
## Jobs | ||
jobs: | ||
unit_test: | ||
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. | ||
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor | ||
macos: | ||
xcode: 13.3.1 # Specify the Xcode version to use | ||
environment: | ||
HOMEBREW_NO_AUTO_UPDATE: 1 | ||
steps: | ||
- macos/preboot-simulator: | ||
version: "15.4" | ||
platform: "iOS" | ||
device: "iPhone 13 Pro" | ||
- checkout | ||
- run: | ||
name: Install xcpretty | ||
command: gem install xcpretty | ||
- run: | ||
name: Run unit tests | ||
command: Scripts/test -d "OS=15.4,name=iPhone 13 Pro" | xcpretty --color --report junit --output ~/test-results/results.xml | ||
- store_test_results: | ||
path: ~/test-results | ||
- store_artifacts: | ||
path: ~/Library/Logs/DiagnosticReports | ||
|
||
## Workflows | ||
workflows: | ||
on_push: | ||
jobs: | ||
- unit_test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
ExampleTests/Supporting Files/XCTAssertStatesEventuallyEqualError.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.