Welcome to mirror list, hosted at ThFree Co, Russian Federation.

preflight.gitlab-ci.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05b05fde53b7152e7876647e8d8b6fbe805a7cc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
rails-production-environment:
  extends:
    - .default-before_script
    - .production
    - .ruby-cache
    - .setup:rules:rails-production-environment
    - .use-pg12
  stage: preflight
  variables:
    BUNDLE_WITHOUT: "development:test"
    BUNDLE_WITH: "production"
  needs: []
  script:
    - bundle exec rails runner --environment=production 'puts Rails.env'