/** * **jenkins-lts** - Extendable open source continuous integration server * * @domain `jenkins.io` * @programs `jenkins-lts`, `jenkins-lts-cli` * @version `2.528.2` (25 versions available) * @versions From newest version to oldest. * * @install `launchpad install jenkins.io` * @homepage https://www.jenkins.io/ * @dependencies `openjdk.org<20` * @buildDependencies `curl.se`, `pkgx.sh@^1` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.jenkinsio * console.log(pkg.name) // "jenkins-lts" * console.log(pkg.description) // "Extendable open source continuous integration s..." * console.log(pkg.programs) // ["jenkins-lts", "jenkins-lts-cli"] * console.log(pkg.versions[0]) // "2.528.2" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/jenkins-io.md * @see https://ts-pkgx.netlify.app/usage */ export declare const jenkinsioPackage: { /** * The display name of this package. */ name: 'jenkins-lts'; /** * The canonical domain name for this package. */ domain: 'jenkins.io'; /** * Brief description of what this package does. */ description: 'Extendable open source continuous integration server'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/jenkins.io/package.yml'; homepageUrl: 'https://www.jenkins.io/'; githubUrl: ''; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install jenkins.io'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +jenkins.io -- $SHELL -i'; launchpadInstallCommand: 'launchpad install jenkins.io'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['jenkins-lts', 'jenkins-lts-cli']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openjdk.org<20']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['curl.se', 'pkgx.sh@^1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['2.528.2', '2.528.1', '2.516.3', '2.516.2', '2.516.1', '2.504.3', '2.504.2', '2.504.1', '2.492.3', '2.492.2', '2.492.1', '2.479.3', '2.479.2', '2.479.1', '2.462.3', '2.462.2', '2.462.1', '2.452.3', '2.452.2', '2.452.1', '2.440.3', '2.440.2', '2.440.1', '2.426.3', '2.426.2']; aliases: readonly [] }; export type JenkinsioPackage = typeof jenkinsioPackage