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

CircleCI: remove duplicate install-dependencies #3643

Merged
merged 1 commit into from
Feb 7, 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
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,6 @@ commands:

update-spm-installation-commit:
steps:
- install-dependencies
- run:
name: Update git commit in targets that use SPM for dependencies
command: |
Expand Down Expand Up @@ -346,6 +345,7 @@ jobs:
name: SPM Custom Entitlement Computation Build
command: swift build --target RevenueCat_CustomEntitlementComputation
no_output_timeout: 30m
- install-dependencies
- update-spm-installation-commit
- run:
name: Custom Entitlement Computation API Tests
Expand Down Expand Up @@ -377,6 +377,7 @@ jobs:
<<: *base-job
steps:
- checkout
- install-dependencies
- update-spm-installation-commit
- run:
name: SPM RevenueCatUI Tests
Expand All @@ -401,6 +402,7 @@ jobs:
<<: *base-job
steps:
- checkout
- install-dependencies
- update-spm-installation-commit
- run:
name: SPM RevenueCatUI Release Build
Expand Down Expand Up @@ -432,6 +434,7 @@ jobs:
<<: *base-job
steps:
- checkout
- install-dependencies
- update-spm-installation-commit
- run:
name: SPM RevenueCatUI Release Build
Expand Down Expand Up @@ -460,6 +463,7 @@ jobs:
<<: *base-job
steps:
- checkout
- install-dependencies
- update-spm-installation-commit
- run:
name: SPM RevenueCatUI Tests
Expand Down Expand Up @@ -768,6 +772,7 @@ jobs:
key: v2-gem-cache-{{ checksum "Gemfile.lock" }}-{{ arch }}
paths:
- vendor/bundle
- install-dependencies
- update-spm-installation-commit
- run:
name: Deployment checks
Expand Down Expand Up @@ -800,6 +805,7 @@ jobs:
steps:
- checkout
- trust-github-key
- install-dependencies
- update-spm-installation-commit
- run:
name: Deploy new version
Expand Down Expand Up @@ -858,6 +864,7 @@ jobs:
steps:
- checkout
- trust-github-key
- install-dependencies
- update-spm-installation-commit
- install-dependencies:
directory: Tests/InstallationTests/SPMInstallation/
Expand All @@ -869,6 +876,7 @@ jobs:
steps:
- checkout
- trust-github-key
- install-dependencies
- update-spm-installation-commit
- install-dependencies:
directory: Tests/InstallationTests/SPMCustomEntitlementComputationInstallation/
Expand All @@ -880,6 +888,7 @@ jobs:
steps:
- checkout
- trust-github-key
- install-dependencies
- update-spm-installation-commit
- install-dependencies:
directory: Tests/InstallationTests/ReceiptParserInstallation/
Expand Down