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

Fix CircleCI configuration by moving environment variable to the container. Add missing dependency and remove unneeded cache. #5

Merged
merged 1 commit into from
Feb 8, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ references:
RAILS_ENV: test
COVERAGE: true
TZ: /usr/share/zoneinfo/America/Chicago
CC_TEST_REPORTER_ID: bd3425becf01f0b46ac11dd33e1e935d65d89f55051c087bfa035e0f89b290a2

jobs:
build:
Expand All @@ -28,7 +29,6 @@ jobs:
- save_cache:
key: active_force-{{ checksum "active_force.gemspec" }}
paths:
- ~/active_force/active_force_index/node_modules
- ~/active_force/active_force_index/vendor/bundle

rspec-test:
Expand Down Expand Up @@ -82,8 +82,6 @@ jobs:
working_directory: ~/active_force/active_force_index
docker:
- *default_docker_ruby_executor
environment:
CC_TEST_REPORTER_ID: bd3425becf01f0b46ac11dd33e1e935d65d89f55051c087bfa035e0f89b290a2
steps:
- attach_workspace:
at: ~/active_force/active_force_index
Expand Down
1 change: 1 addition & 0 deletions active_force.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'restforce', '>= 5'
spec.add_development_dependency 'rake', '>= 0'
spec.add_development_dependency 'rspec', '>= 0'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'pry', '>= 0'
spec.add_development_dependency 'simplecov', '>= 0'

Expand Down