Skip to content

Commit

Permalink
Add .circleci/config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tarappo committed Jul 18, 2024
1 parent bcab8da commit 7d4ef34
Showing 1 changed file with 32 additions and 29 deletions.
61 changes: 32 additions & 29 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,41 @@
# iOS CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details
#
version: 2
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/configuration-reference

# For a detailed guide to building and testing on iOS, read the docs:
# https://circleci.com/docs/testing-ios/
version: 2.1

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
jobs:
build:

# Specify the Xcode version to use
# Specify the execution environment.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
macos:
xcode: "10.2.0"
# Specify the Xcode version you desire here
# See: https://circleci.com/docs/using-macos/
xcode: 15.2.0

# Add steps to the job
# See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps
steps:
# Checkout the code as the first step.
- checkout
- run: pod install # Install CocoaPods dependencies
- run: fastlane scan # Run tests using Fastlane

# Install CocoaPods
# - run:
# name: Install CocoaPods
# command: pod install

# Build the app and run tests
- run:
name: Build and run tests
command: fastlane scan
environment:
SCAN_DEVICE: iPhone 6

# Collect XML test results data to show in the UI,
# and save the same XML files under test-results folder
# in the Artifacts tab
# Collect XML test results data to show in the UI, and save the same XML
# files under test-results folder in the Artifacts tab
- store_test_results:
path: test_output/report.xml
- store_artifacts:
path: /tmp/test-results
destination: scan-test-results
path: test_output
- store_artifacts:
path: ~/Library/Logs/scan
destination: scan-logs
path: test_output
destination: scan-output

# Orchestrate jobs using workflows
# See: https://circleci.com/docs/workflows/ & https://circleci.com/docs/configuration-reference/#workflows
workflows:
sample: # This is the name of the workflow, feel free to change it to better match your workflow.
# Inside the workflow, you define the jobs you want to run.
jobs:
- build

0 comments on commit 7d4ef34

Please sign in to comment.