Skip to content

Merge branch 'preview-costs-and-benefits' of https://github.com/fakta…

f3be36f
Select commit
Loading
Failed to load commit list.
Open

Nástroj pro porovnání opatření na dekarbonizaci domácností #1469

Merge branch 'preview-costs-and-benefits' of https://github.com/fakta…
f3be36f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed May 14, 2026 in 3m 13s

Build Failed

The build failed. This is a change from the previous build, which passed.

Details

This is a normal build for the preview-costs-and-benefits branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Jammy)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "version": "~> 1.0",
  "gemfile": [
    "web-core/Gemfile"
  ],
  "git": {
    "depth": false
  },
  "addons": {
    "apt": {
      "sources": [
        {
          "sourceline": "ppa:inkscape.dev/stable"
        }
      ],
      "packages": [
        "inkscape",
        "imagemagick"
      ]
    }
  },
  "before_install": [
    "git clone --depth=1 https://github.com/MestreLion/git-tools",
    "./git-tools/git-restore-mtime --force",
    "rm -rf ./git-tools"
  ],
  "install": [
    "make bundle-install"
  ],
  "script": [
    "make check"
  ],
  "env": [
    "global={:NOKOGIRI_USE_SYSTEM_LIBRARIES=>\"true\"}"
  ],
  "cache": {
    "bundler": true,
    "directories": [
      "$TRAVIS_BUILD_DIR/web-core/vendor",
      "$TRAVIS_BUILD_DIR/web-core/.cache",
      "$TRAVIS_BUILD_DIR/web-core/assets/generated",
      "$TRAVIS_BUILD_DIR/web-core/assets/studies",
      "$TRAVIS_BUILD_DIR/web-core/assets/covers"
    ]
  },
  "before_deploy": [
    "wget -q --output-document=web-core/firebase https://firebase.tools/bin/linux/latest",
    "chmod +x web-core/firebase"
  ],
  "deploy": [
    {
      "provider": "script",
      "edge": true,
      "on": {
        "branch": [
          "master"
        ]
      },
      "skip_cleanup": true,
      "script": "make deploy-production"
    },
    {
      "provider": "script",
      "edge": true,
      "on": {
        "all_branches": true,
        "condition": [
          "$TRAVIS_BRANCH = preview-*"
        ]
      },
      "skip_cleanup": true,
      "script": "make deploy-preview"
    }
  ]
}