Skip to content

Fix MD rendering of docstring

d4ba62f
Select commit
Loading
Failed to load commit list.
Closed

Rewrite as wrapper around Java impl #33

Fix MD rendering of docstring
d4ba62f
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action May 15, 2025 in 38s

Build Errored

The build errored, just like the previous build.

Details

This is a normal build for the rewrite-as-java-wrapper 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 Clojure
Operating System Linux (Noble)
JDK Version openjdk17
Ruby Version 2.6
Build Configuration
{
  "language": "clojure",
  "os": [
    "linux"
  ],
  "dist": "noble",
  "addons": {
    "apt": {
      "packages": [
        "gzip"
      ]
    }
  },
  "jdk": [
    "openjdk17"
  ],
  "rvm": [
    "2.6"
  ],
  "stages": [
    {
      "name": "test",
      "if": "branch = develop"
    },
    {
      "name": "publish",
      "if": "tag IS present"
    }
  ],
  "cache": {
    "bundler": true
  },
  "jobs": {
    "include": [
      {
        "stage": "build",
        "name": "Build & Test",
        "script": [
          "lein test"
        ]
      },
      {
        "stage": "test",
        "install": [
          "lein deps",
          "lein pom"
        ],
        "script": [
          "lein test"
        ]
      },
      {
        "stage": "publish",
        "install": [
          "lein deps",
          "lein pom"
        ],
        "script": [
          "lein test"
        ],
        "deploy": [
          {
            "provider": "script",
            "script": "lein deploy",
            "cleanup": false,
            "on": {
              "tags": true,
              "all_branches": true
            }
          }
        ]
      }
    ]
  }
}