Skip to content

wip

4352e08
Select commit
Loading
Failed to load commit list.
Draft

Draft Checksums Change #34

wip
4352e08
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 10, 2025 in 1m 0s

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 #34 Draft Checksums Change.
Any changes that have been made to the main 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
{
  "after_error": [
    "docker logs asciidoc-to-html"
  ],
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "branches": {
    "only": [
      "main"
    ]
  },
  "env": [
    "global=GIT_USER_EMAIL=[secure]=GIT_USER_NAME=[secure]=GIT_UID=[secure]=GIT_TOKEN=[secure]"
  ],
  "notifications": {
    "email": [
      {
        "recipients": [
          "{GIT_USER_EMAIL}"
        ]
      }
    ]
  },
  "services": [
    "docker"
  ],
  "before_install": [
    "mkdir -p output",
    "docker pull asciidoctor/docker-asciidoctor"
  ],
  "script": [
    "GUIDE_VERSION=`cat VERSION`\"-${TRAVIS_BUILD_NUMBER}\"",
    "echo ${GUIDE_VERSION}",
    "docker run -v $TRAVIS_BUILD_DIR:/documents/ --name asciidoc-to-html asciidoctor/docker-asciidoctor      asciidoctor -a toc=left -a docinfo=shared -D /documents/output DAP4.adoc"
  ],
  "after_failure": [
    "docker logs asciidoc-to-html"
  ],
  "after_success": [
    "./travis/deploy_to_gh_pages.sh"
  ]
}