繁体   English   中英

如何解决“TZInfo::DataSourceNotFound: tzinfo-data is not present.”当我执行 rails db:migrate

[英]How to solve "TZInfo::DataSourceNotFound: tzinfo-data is not present."when I do a rails db:migrate

我们正在使用 CircleCI 实施 CI。
后面运行就报错tzinfo-data,无法进入测试。
我写了一个运行来安装 tzinfo-data,但是没有用。 我完全卡住了。

配置文件

- run:
    name: Database setup
    command: |
      bundle exec rails db:create
      bundle exec rails db:migrate

错误

rake aborted!
TZInfo::DataSourceNotFound: tzinfo-data is not present. Please add gem 'tzinfo-data' to your Gemfile and run bundle install

配置文件:

version: 2.1
orbs:
  ruby: circleci/ruby@1.1.2

jobs:
  build:
    docker:
      - image: cimg/ruby:2.6.5
    working_directory: ~/myapp/web
    steps:
      - checkout:
          path: ~/myapp
      - restore_cache:
          name: bundle install restore
          keys:
            - v1-dependencies-{{ checksum "Gemfile.lock" }}
            - v1-dependencies-
      - run:
          name: default mysql client install
          command: |
            sudo apt update
            sudo apt-get install default-mysql-client
            sudo apt-get install libmysqlclient-dev
      - run:
          name: bundle Install
          command: bundle check --path=vendor/bundle || bundle install --jobs=4 --retry=3 --path vendor/bundle
      - save_cache:
          name: bundle install save
          paths:
            - ./vendor/bundle
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}
  test:
    docker:
      - image: cimg/ruby:2.6.5
      - image: circleci/mysql:5.7
        environment:
          DB_DATABASE: app_test
          DB_PASSWORD: password
          DB_USER: root
          TZ: "Asia/Tokyo"
    environment:
      BUNDLE_JOBS: "3"
      BUNDLE_RETRY: "3"
      APP_DATABASE_HOST: "127.0.0.1"
      RAILS_ENV: test
      TZ: "Asia/Tokyo"
    working_directory: ~/myapp/web
    steps:
      - checkout:
          path: ~/myapp
      - restore_cache:
          name: bundle install restore
          key: v1-dependencies-{{ checksum "Gemfile.lock" }}
      - run:
          name: default mysql client install
          command: |
            sudo apt update
            sudo apt-get install default-mysql-client
            sudo apt-get install libmysqlclient-dev
      - run:
          name: bundle install
          command: bundle check --path=vendor/bundle || bundle install --path vendor/bundle --clean --jobs 4 --retry 3
      - run:
          name: Database setup
          command: |
            bundle exec rails db:create
            bundle exec rails db:migrate
      - run:
          name: Echo Test
          command: echo "CircleCI Test"
      - run:
          name: test
          command: bundle exec rake test

workflows:
  version: 2
  build_and_test:
    jobs:
      - build
      - test:
          requires:
            - build

宝石文件:

source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.6.5'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.3', '>= 6.0.3.7'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4'
# Use Puma as the app server
gem 'puma', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 4.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'

# jQuery
gem "jquery-rails"
gem 'rails-i18n', '~> 6'
# enum i18n
gem "enum_help"
gem "config"
gem 'faraday'

gem 'acts_as_paranoid', '~> 0.6.0'

gem 'http-cookie'

gem 'kaminari'

gem 'devise'
gem 'devise_token_auth'
gem 'devise-security'
gem 'devise-two-factor', '~> 3.1'

# AWS
gem 'aws-sdk'

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false

gem 'composite_primary_keys'

gem 'clamav-client', require: 'clamav/client'

gem 'wovnrb'

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 3.3.0'
  gem 'listen', '>= 3.0.5', '< 3.2'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
end

group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '>= 2.15'
  gem 'selenium-webdriver'
  # Easy installation and use of web drivers to run system tests with browsers
  gem 'webdrivers'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

我试过了(1)

我尝试按如下方式将tzinfo添加到 Gemfile,但我得到了同样的错误。

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'tzinfo', '1.2.9'


捆绑安装

文件锁

DEPENDENCIES
...
  tzinfo (= 1.2.9)
  tzinfo-data


使用 circleCI 运行

同样的错误

我试过了(2)

安装 tzinfo gem 作为运行 config.yml

- run:
    name: tzinfo install
    command: |
      gem install tzinfo -v "~> 1.2.9"
      gem install tzinfo-data


使用 circleCI 运行

同样的错误

捆绑安装后,我添加了以下内容并能够运行

- run:
  name: RUN apt install tzdata
  command: sudo apt install tzdata

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM