Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(circleci): update config.yml for nightly workflow and build jobs #13

Merged
merged 3 commits into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

version: 2.1

filters_always: &filters_always
filters:
tags:
only: /.*/

orbs:
macos: circleci/macos@2

Expand Down Expand Up @@ -29,7 +33,7 @@ jobs:
- run: xcodebuild test -scheme HoneycombTests -sdk iphonesimulator17.5 -destination 'OS=17.5,name=iPhone 15'

workflows:
lint:
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
Expand All @@ -39,15 +43,11 @@ workflows:
- main
jobs:
- lint

unit-tests:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- main
jobs:
- tests

build:
jobs:
- lint:
<<: *filters_always
- tests:
<<: *filters_always
Loading