code-server/ci
Anmol Sethi 7c7f62d3f3
Fixes for CI from @code-asher's review
2020-05-08 16:45:59 -04:00
..
build Simplify packaging and improve scripts 2020-05-08 01:04:24 -04:00
container Automate release process 2020-05-08 03:26:19 -04:00
dev Switch fully to GH Actions 2020-05-07 23:13:28 -04:00
release-container Fixes for CI from @code-asher's review 2020-05-08 16:45:59 -04:00
steps Fixes for CI from @code-asher's review 2020-05-08 16:45:59 -04:00
README.md Fixes for CI from @code-asher's review 2020-05-08 16:45:59 -04:00
lib.sh Add NPM package, debs, rpms and refactor CI/build process 2020-05-06 20:25:52 -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

  1. Update the version of code-server in package.json and push a commit
  2. CI will run and generate the npm-package and release-packages artifacts on the GH actions workflow
  3. Create a new draft release and attach all files in release-packages
    1. Run some basic sanity tests on one of the released packages
  4. Summarize the major changes in the release notes and link to the relevant issues.
    1. Make sure to mention the VS Code version in the release notes
  5. 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

dev

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

build

This directory contains the scripts used to build 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/test.sh
    • Runs yarn ci 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