Circleci - Upgrade to Buster Images (#12705)
* Update config.yml * Update Gemfile.lock
This commit is contained in:
		
							parent
							
								
									0e8c0287d0
								
							
						
					
					
						commit
						7a81346d55
					
				@ -3,7 +3,7 @@ version: 2
 | 
				
			|||||||
aliases:
 | 
					aliases:
 | 
				
			||||||
  - &defaults
 | 
					  - &defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/ruby:2.6-stretch-node
 | 
					      - image: circleci/ruby:2.6-buster-node
 | 
				
			||||||
        environment: &ruby_environment
 | 
					        environment: &ruby_environment
 | 
				
			||||||
          BUNDLE_APP_CONFIG: ./.bundle/
 | 
					          BUNDLE_APP_CONFIG: ./.bundle/
 | 
				
			||||||
          DB_HOST: localhost
 | 
					          DB_HOST: localhost
 | 
				
			||||||
@ -39,7 +39,6 @@ aliases:
 | 
				
			|||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - checkout
 | 
					      - checkout
 | 
				
			||||||
      - *attach_workspace
 | 
					      - *attach_workspace
 | 
				
			||||||
 | 
					 | 
				
			||||||
      - restore_cache:
 | 
					      - restore_cache:
 | 
				
			||||||
          keys:
 | 
					          keys:
 | 
				
			||||||
            - v1-node-dependencies-{{ checksum "yarn.lock" }}
 | 
					            - v1-node-dependencies-{{ checksum "yarn.lock" }}
 | 
				
			||||||
@ -49,7 +48,6 @@ aliases:
 | 
				
			|||||||
          key: v1-node-dependencies-{{ checksum "yarn.lock" }}
 | 
					          key: v1-node-dependencies-{{ checksum "yarn.lock" }}
 | 
				
			||||||
          paths:
 | 
					          paths:
 | 
				
			||||||
            - ./node_modules/
 | 
					            - ./node_modules/
 | 
				
			||||||
 | 
					 | 
				
			||||||
      - *persist_to_workspace
 | 
					      - *persist_to_workspace
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  - &install_system_dependencies
 | 
					  - &install_system_dependencies
 | 
				
			||||||
@ -59,12 +57,16 @@ aliases:
 | 
				
			|||||||
          sudo apt-get update
 | 
					          sudo apt-get update
 | 
				
			||||||
          sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
 | 
					          sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
 | 
				
			||||||
          
 | 
					          
 | 
				
			||||||
 | 
					          ## TODO: FIX THESE BUSTER DEPENDANCES
 | 
				
			||||||
 | 
					          sudo wget http://ftp.au.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u3_amd64.deb
 | 
				
			||||||
 | 
					          sudo dpkg -i libicu57_57.1-6+deb9u3_amd64.deb
 | 
				
			||||||
 | 
					          sudo wget http://ftp.au.debian.org/debian/pool/main/p/protobuf/libprotobuf10_3.0.0-9_amd64.deb
 | 
				
			||||||
 | 
					          sudo dpkg -i libprotobuf10_3.0.0-9_amd64.deb
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  - &install_ruby_dependencies
 | 
					  - &install_ruby_dependencies
 | 
				
			||||||
      steps:
 | 
					      steps:
 | 
				
			||||||
        - *attach_workspace
 | 
					        - *attach_workspace
 | 
				
			||||||
 | 
					 | 
				
			||||||
        - *install_system_dependencies
 | 
					        - *install_system_dependencies
 | 
				
			||||||
 | 
					 | 
				
			||||||
        - run: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version
 | 
					        - run: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version
 | 
				
			||||||
        - *restore_ruby_dependencies
 | 
					        - *restore_ruby_dependencies
 | 
				
			||||||
        - run: bundle install --clean --jobs 16 --path ./vendor/bundle/ --retry 3 --with pam_authentication --without development production && bundle clean
 | 
					        - run: bundle install --clean --jobs 16 --path ./vendor/bundle/ --retry 3 --with pam_authentication --without development production && bundle clean
 | 
				
			||||||
@ -82,10 +84,8 @@ aliases:
 | 
				
			|||||||
  - &test_steps
 | 
					  - &test_steps
 | 
				
			||||||
      steps:
 | 
					      steps:
 | 
				
			||||||
        - *attach_workspace
 | 
					        - *attach_workspace
 | 
				
			||||||
 | 
					 | 
				
			||||||
        - *install_system_dependencies
 | 
					        - *install_system_dependencies
 | 
				
			||||||
        - run: sudo apt-get install -y ffmpeg
 | 
					        - run: sudo apt-get install -y ffmpeg
 | 
				
			||||||
 | 
					 | 
				
			||||||
        - run:
 | 
					        - run:
 | 
				
			||||||
            name: Prepare Tests
 | 
					            name: Prepare Tests
 | 
				
			||||||
            command: ./bin/rails parallel:create parallel:load_schema parallel:prepare
 | 
					            command: ./bin/rails parallel:create parallel:load_schema parallel:prepare
 | 
				
			||||||
@ -105,14 +105,14 @@ jobs:
 | 
				
			|||||||
  install-ruby2.5:
 | 
					  install-ruby2.5:
 | 
				
			||||||
    <<: *defaults
 | 
					    <<: *defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/ruby:2.5-stretch-node
 | 
					      - image: circleci/ruby:2.5-buster-node
 | 
				
			||||||
        environment: *ruby_environment
 | 
					        environment: *ruby_environment
 | 
				
			||||||
    <<: *install_ruby_dependencies
 | 
					    <<: *install_ruby_dependencies
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  install-ruby2.4:
 | 
					  install-ruby2.4:
 | 
				
			||||||
    <<: *defaults
 | 
					    <<: *defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/ruby:2.4-stretch-node
 | 
					      - image: circleci/ruby:2.4-buster-node
 | 
				
			||||||
        environment: *ruby_environment
 | 
					        environment: *ruby_environment
 | 
				
			||||||
    <<: *install_ruby_dependencies
 | 
					    <<: *install_ruby_dependencies
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -131,7 +131,7 @@ jobs:
 | 
				
			|||||||
  test-ruby2.6:
 | 
					  test-ruby2.6:
 | 
				
			||||||
    <<: *defaults
 | 
					    <<: *defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/ruby:2.6-stretch-node
 | 
					      - image: circleci/ruby:2.6-buster-node
 | 
				
			||||||
        environment: *ruby_environment
 | 
					        environment: *ruby_environment
 | 
				
			||||||
      - image: circleci/postgres:10.6-alpine
 | 
					      - image: circleci/postgres:10.6-alpine
 | 
				
			||||||
        environment:
 | 
					        environment:
 | 
				
			||||||
@ -142,7 +142,7 @@ jobs:
 | 
				
			|||||||
  test-ruby2.5:
 | 
					  test-ruby2.5:
 | 
				
			||||||
    <<: *defaults
 | 
					    <<: *defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/ruby:2.5-stretch-node
 | 
					      - image: circleci/ruby:2.5-buster-node
 | 
				
			||||||
        environment: *ruby_environment
 | 
					        environment: *ruby_environment
 | 
				
			||||||
      - image: circleci/postgres:10.6-alpine
 | 
					      - image: circleci/postgres:10.6-alpine
 | 
				
			||||||
        environment:
 | 
					        environment:
 | 
				
			||||||
@ -153,7 +153,7 @@ jobs:
 | 
				
			|||||||
  test-ruby2.4:
 | 
					  test-ruby2.4:
 | 
				
			||||||
    <<: *defaults
 | 
					    <<: *defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/ruby:2.4-stretch-node
 | 
					      - image: circleci/ruby:2.4-buster-node
 | 
				
			||||||
        environment: *ruby_environment
 | 
					        environment: *ruby_environment
 | 
				
			||||||
      - image: circleci/postgres:10.6-alpine
 | 
					      - image: circleci/postgres:10.6-alpine
 | 
				
			||||||
        environment:
 | 
					        environment:
 | 
				
			||||||
@ -164,7 +164,7 @@ jobs:
 | 
				
			|||||||
  test-webui:
 | 
					  test-webui:
 | 
				
			||||||
    <<: *defaults
 | 
					    <<: *defaults
 | 
				
			||||||
    docker:
 | 
					    docker:
 | 
				
			||||||
      - image: circleci/node:12.9-stretch
 | 
					      - image: circleci/node:12-buster
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
      - *attach_workspace
 | 
					      - *attach_workspace
 | 
				
			||||||
      - run: ./bin/retry yarn test:jest
 | 
					      - run: ./bin/retry yarn test:jest
 | 
				
			||||||
 | 
				
			|||||||
@ -803,9 +803,3 @@ DEPENDENCIES
 | 
				
			|||||||
  webmock (~> 3.7)
 | 
					  webmock (~> 3.7)
 | 
				
			||||||
  webpacker (~> 4.2)
 | 
					  webpacker (~> 4.2)
 | 
				
			||||||
  webpush
 | 
					  webpush
 | 
				
			||||||
 | 
					 | 
				
			||||||
RUBY VERSION
 | 
					 | 
				
			||||||
   ruby 2.6.5p114
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
BUNDLED WITH
 | 
					 | 
				
			||||||
   1.17.3
 | 
					 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user