AMD64
no language set
Git
mustafaergul/mustafaergul.github.io:.travis.yml@bab357c
---
os: linux
dist: focal

language: ruby
rvm:
  - 2.6.3

before_script:
  - chmod +x ./script/cibuild # or do this locally and commit

# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script:
  - ./script/cibuild

# branch whitelist, only for GitHub Pages
# branches:
#  only:
#  - gh-pages     # test the gh-pages branch
#  - /pages-(.*)/ # test every branch which starts with "pages-"

addons:
  apt:
    packages:
      - libcurl4-openssl-dev

cache: bundler
Build Config
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "rvm": [
    "2.6.3"
  ],
  "before_script": [
    "chmod +x ./script/cibuild"
  ],
  "script": [
    "./script/cibuild"
  ],
  "addons": {
    "apt": {
      "packages": [
        "libcurl4-openssl-dev"
      ]
    }
  },
  "cache": {
    "bundler": true
  }
}