code-server/ci
Anmol Sethi 40778b15ca
Add code-server version into VS Code about
Closes #1506
2020-05-14 22:33:12 -04:00
..
build Add code-server version into VS Code about 2020-05-14 22:33:12 -04:00
container Automate release process 2020-05-08 03:26:19 -04:00
dev Add code-server version into VS Code about 2020-05-14 22:33:12 -04:00
release-container Fixes for CI from @code-asher's review 2020-05-08 16:45:59 -04:00
steps Make npm-postinstall.sh more robust 2020-05-13 22:44:43 -04:00
README.md 3.3.0 2020-05-14 18:43:01 -04:00
lib.sh Rename darwin releases to macos 2020-05-14 05:59:20 -04:00

README.md

ci

This directory contains scripts used for code-server's continuous integration infrastructure.

Many of these scripts contain more detailed documentation and options in comments at the top.

Any file and directory added into this tree should be documented here.

Publishing a release

Make sure you have $GITHUB_TOKEN set and hub installed.

  1. Update the version of code-server in package.json and README.md/guide.md install examples and push a commit
  2. GitHub actions will generate the npm-package and release-packages artifacts
  3. Run yarn release:github-draft to create a GitHub draft release from the template with the updated version.
    1. Summarize the major changes in the release notes and link to the relevant issues.
  4. Wait for the artifacts in step 2 to build
  5. Run yarn release:github-assets to download the artifacts and then upload them to the draft release
  6. Run some basic sanity tests on one of the released packages
  7. Publish the release
    1. CI will automatically grab the artifacts and then
      1. Publish the NPM package
      2. Publish the AMD64 docker image
      3. Publish the ARM64 docker image
  8. Update the homebrew and AUR packages

dev

This directory contains scripts used for the development of code-server.

build

This directory contains the scripts used to build and release code-server. You can disable minification by setting MINIFY=.

release-container

This directory contains the release docker container.

container

This directory contains the container for CI.

steps

This directory contains a few scripts used in CI. Just helps avoid clobbering the CI configuration.

  • ./steps/fmt.sh
    • Runs yarn fmt after ensuring VS Code is patched
  • ./steps/lint.sh
    • Runs yarn lint after ensuring VS Code is patched
  • ./steps/test.sh
    • Runs yarn test after ensuring VS Code is patched
  • ./steps/release.sh
    • Runs the full release process
    • Generates the npm package at ./release
  • ./steps/static-release.sh
    • Takes the output of the previous script and generates a static release and packages
  • ./steps/lib.sh
    • Contains helpers to download artifacts from github actions workflow runs
  • ./steps/publish-npm.sh
    • Grabs the npm-package release artifact for the current commit and publishes it on NPM
  • ./steps/publish-docker.sh
    • Grabs the release-packages release artifact for the current commit and builds a docker image with it and publishes that onto docker hub with the correct tag and updates latest