Skip to content

Commit

Permalink
config: replace CI legacy images with 'next-gen'
Browse files Browse the repository at this point in the history
  • Loading branch information
Mate2xo committed Sep 14, 2024
1 parent 4aaee49 commit cffc01c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
version: 2 # use CircleCI 2.0
# NOTE: images have been migrated to 'next-gen'
# see: https://discuss.circleci.com/t/legacy-convenience-image-deprecation/41034
jobs: # a collection of steps
build: # runs not using Workflows must have a `build` job as entry point
parallelism: 3 # run three instances of this job in parallel
docker: # run the steps with Docker
- image: circleci/ruby:2.7.8-node-browsers # ...with this image as the primary container; this is where all `steps` will run
- image: cimg/ruby:2.7.8-browsers # ...with this image as the primary container; this is where all `steps` will run
environment: # environment variables for primary container
BUNDLE_JOBS: 3
BUNDLE_RETRY: 3
BUNDLE_PATH: vendor/bundle
PGHOST: 127.0.0.1
PGUSER: postgres
RAILS_ENV: test
- image: circleci/postgres:9.5-alpine # database image
- image: cimg/postgres:14.12 # database image
steps: # a collection of executable commands
- checkout # special step to check out source code to working directory

Expand Down

0 comments on commit cffc01c

Please sign in to comment.