Atomist Software Delivery Machine SDK


Keywords
atomist, automation, sdm, ci, cd, node, software-delivery-machine, typescript
License
Apache-2.0
Install
npm install @atomist/sdm@2.1.7-main.7

Documentation

Software Delivery Machine - @atomist/sdm

This is the home of the Software Delivery Machine (SDM) framework and related projects.

The SDM framework enables you to control your delivery process in code. Think of it as an API for your software delivery. See the Atomist SDM documentation for more information on the concept of a software delivery machine and how to create and develop an SDM.

Migrating to SDM 2.0

SDM version 2.0 aims to make it easier to use the SDM framework. We have consolidated the most useful NPM packages under @atomist/sdm to simplify dependency management. Rather than separately installing @atomist/automation-client, @atomist/sdm-core, and various @atomist/sdm-pack-*, you now just install @atomist/sdm. @atomist/sdm-local is deprecated.

To update to the new single package in your SDM, follow these steps:

  1. Remove Atomist SDM and automation-client dependencies

    $ npm uninstall @atomist/automation-client @atomist/sdm @atomist/sdm-core @atomist/sdm-local
    
  2. Remove any extension SDM packs

    $ npm uninstall @atomist/sdm-pack-ABC @atomist/sdm-pack-DEF @atomist/sdm-pack-GHI
    
  3. Reinstall Atomist SDM

    $ npm install @atomist/sdm
    
  4. The consolidation of packages introduces a breaking change: you must update your import statements. Specifically:

    • Change import … "@atomist/automation-client" to import … "@atomist/sdm/lib/client"
    • Change import … "@atomist/sdm-core" to import … "@atomist/sdm/lib/core"
    • Change import … "@atomist/sdm-pack-spring" to import … "@atomist/sdm/lib/pack/jvm"
    • Change import … "@atomist/sdm-pack-XYZ" to import … "@atomist/sdm/lib/pack/XYZ"
  5. EditMode in automation-client is now editModes.EditMode in import { editModes } from "@atomist/sdm/lib/client"

  6. Some packs that were part of sdm-core have been relocated under sdm/lib/pack, so their imports change like these:

    import { githubGoalStatusSupport } from "@atomist/sdm/lib/pack/github-goal-status";
    import { goalStateSupport } from "@atomist/sdm/lib/pack/goal-state";
    import { notificationSupport } from "@atomist/sdm/lib/pack/notification";
    
  7. Deprecated exports have been removed from SDM 2.0. If you need help moving away from capabilities that have been removed, please contact us.

Contributing

Contributions to this project from community members are encouraged and appreciated. Please review the Contributing Guidelines for more information. Also see the Development section in this document.

Code of conduct

This project is governed by the Code of Conduct. You are expected to act in accordance with this code by participating. Please report any unacceptable behavior to code-of-conduct@atomist.com.

Documentation

Please see docs.atomist.com for developer documentation.

Connect

Follow @atomist and The Composition blog related to SDM.

Support

General support questions should be discussed in the #help channel in the Atomist community Slack workspace.

If you find a problem, please create an issue.

Development

You will need to install Node.js to build and test this project.

Build and test

Install dependencies.

$ npm install

Use the build package script to compile, test, lint, and build the documentation.

$ npm run build

Release

Releases are handled via the Atomist SDM. Just press the 'Approve' button in the Atomist dashboard or Slack.


Created by Atomist. Need Help? Join our Slack workspace.