Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
saikrishna321 committed Jul 14, 2024
1 parent 65c8fcc commit 231578c
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ version: 2.1
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
jobs:
WDIO_IOS:
branches:
ignore:
- main
# Specify the execution environment.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
macos:
Expand Down Expand Up @@ -67,17 +64,14 @@ jobs:
- store_artifacts:
path: appium-logs
JAVA_IOS:
branches:
ignore:
- main
# Specify the execution environment.
# See: https://circleci.com/docs/executor-intro/ & https://circleci.com/docs/configuration-reference/#executor-job
# Add steps to the job
# See: https://circleci.com/docs/jobs-steps/#steps-overview & https://circleci.com/docs/configuration-reference/#steps
macos:
# Specify the Xcode version you desire here
# See: https://circleci.com/docs/using-macos/
xcode: 15.2.0
xcode: 15.2.0
steps:
# Checkout the code as the first step.
- checkout
Expand Down Expand Up @@ -127,5 +121,13 @@ workflows:
ios: # 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:
- WDIO_IOS
- JAVA_IOS
- WDIO_IOS:
filters:
branches:
ignore:
- main
- JAVA_IOS:
filters:
branches:
ignore:
- main

0 comments on commit 231578c

Please sign in to comment.