Skip to content

lein

e5b938a
Select commit
Loading
Failed to load commit list.
Open

gha #35

lein
e5b938a
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Dec 23, 2025 in 7m 31s

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 #35 gha.
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 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
            }
          }
        ]
      }
    ]
  }
}