code-server-2/ci
Anmol Sethi 524b0205e9
Workaround for GH Actions ruining file permissions
2020-05-12 19:59:55 -04:00
..
build Add systemd user service to .deb and .rpm 2020-05-12 19:59:54 -04:00
container Automate release process 2020-05-08 03:26:19 -04:00
dev Fix paths for Windows 2020-05-12 13:49:37 -05:00
release-container Fixes for CI from @code-asher's review 2020-05-08 16:45:59 -04:00
steps Workaround for GH Actions ruining file permissions 2020-05-12 19:59:55 -04:00
README.md Add systemd user service to .deb and .rpm 2020-05-12 19:59:54 -04:00
lib.sh Automate draft release 2020-05-11 20:59:56 -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 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

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