Skip to content

fix: Properly escape backslashes in CLANG_BIN variable

19b2637
Select commit
Loading
Failed to load commit list.
Open

fix: Properly escape backslashes in CLANG_BIN variable #223

fix: Properly escape backslashes in CLANG_BIN variable
19b2637
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 24, 2025 in 1m 40s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #223 fix: Properly escape backslashes in CLANG_BIN variable.
Any changes that have been made to the master branch before the build ran are also included.

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 (Focal)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "services": [
    "docker"
  ],
  "before_install": [
    "docker build -t sbl_docs .",
    "mkdir -p build publish",
    "chmod 777 build publish",
    "touch publish/.nojekyll",
    "export GIT_SAFE_DIR_CMD=\"git config --global --add safe.directory /docs\""
  ],
  "script": [
    "docker run --rm -v ${PWD}:/docs -w /docs sbl_docs /bin/bash -c \"${GIT_SAFE_DIR_CMD} && make publish BUILDDIR=/docs/build PUBLISHDIR=/docs/publish\""
  ],
  "before_deploy": [
    "yes | gem update --system --force",
    "gem install bundler",
    "gem install uri",
    "gem install logger",
    "gem install faraday-net_http -v 3.3.0"
  ],
  "deploy": [
    {
      "provider": "pages",
      "strategy": "git",
      "repo": "slimbootloader/slimbootloader.github.io",
      "local_dir": "publish",
      "skip_cleanup": true,
      "token": "$GITHUB_TOKEN",
      "target_branch": "master"
    }
  ]
}