code-server/ci
Anmol Sethi 231e31656a
Automate release process
2020-05-08 03:26:19 -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 Automate release process 2020-05-08 03:26:19 -04:00
steps Automate release process 2020-05-08 03:26:19 -04:00
README.md Automate release process 2020-05-08 03:26:19 -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 the files in release-packages
  4. Run some basic sanity tests on one of the released packages
  5. Publish the release
  6. 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 .travis.yml.

  • ./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