|
| 1 | +# GitHub Actions CI/CD |
| 2 | + |
| 3 | +The purpose of this workflow is to run all continuous integration (CI) and continuous deployment (CD) jobs when needed while respecting their internal dependencies. The continuous integration jobs serve to ensure new code passes linting, unit tests and integration tests before reaching the master branch. The continuous deployment jobs serve to deploy the latest version of the code to cortex and the website when merged with master. |
| 4 | + |
| 5 | +## Contributing |
| 6 | + |
| 7 | +If you wish to add a new CI or CD job, add it to the existing current test-build-deploy workflow and make sure it does not prevent any of the other jobs from passing. If you wish to change any of the build or testing images, update it in all sections are containers are often reused. If you wish to add an entirely new workflow, create a new yml file with separate triggers and filters. In all cases, clearly document any changes made to the workflows, images and dependencies below. |
| 8 | + |
| 9 | +## Test, Build and Deploy |
| 10 | + |
| 11 | +test-build-deploy.yml specifies a workflow that runs all Cortex continuous integration and continuous deployment jobs. The workflow is triggered on every pull request and commit to master, however the CD jobs only run when changes are merged onto master . The workflow combines both CI and CD jobs, because the CD jobs are dependent on artifacts produced the CI jobs. |
| 12 | + |
| 13 | + |
| 14 | +## Specific Jobs |
| 15 | + |
| 16 | +| Job | Description | Type | |
| 17 | +|------------------------|-------------------------------------------------------------------------------------------------------------------------------|------| |
| 18 | +| lint | Runs linting and ensures vendor directory, protos and generated documentation are consistent. | CI | |
| 19 | +| test | Runs units tests on Cassandra testing framework. | CI | |
| 20 | +| integration-configs-db | Integration tests for database configurations. | CI | |
| 21 | +| integration | Runs integration tests after upgrading golang, pulling necessary docker images and downloading necessary module dependencies. | CI | |
| 22 | +| build | Builds and saves an up-to-date Cortex image and website. | CI | |
| 23 | +| deploy_website | Deploys the latest version of Cortex website to gh-pages branch. Triggered within workflow. | CD | |
| 24 | +| deploy | Deploys the latest Cortex image. | CD | |
| 25 | + |
| 26 | +## Job Dependency Graph |
| 27 | + |
| 28 | +Internal dependencies between jobs illustrated below. Jobs run concurrently where possible but do not start until all jobs they depend on have completed successfully. |
| 29 | + |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | +### Key Details |
| 34 | + |
| 35 | +**Naming Convention** |
| 36 | + |
| 37 | +Each step in a job has a clear name that encapsulates the purpose of the command. The convention we are using is each word in the name should be capitalized except articles and prepositions. This creates consistent labeling when looking at the progress of the current workflow on GitHub. |
| 38 | + |
| 39 | +```yaml |
| 40 | +- name: Checkout Repo |
| 41 | +# commands |
| 42 | +- name: Get Dependencies |
| 43 | +# commands |
| 44 | +``` |
| 45 | + |
| 46 | +**Checkout Version** |
| 47 | + |
| 48 | +Current build-image ships with an older version of Git which breaks github/actions@v2 so we are using actions/checkout@v1 for all jobs until the quay image is updated to ship with a more recent version of Git. |
| 49 | + |
| 50 | +```yaml |
| 51 | +- name: Checkout Repo |
| 52 | + uses: actions/checkout@v1 |
| 53 | +``` |
| 54 | +
|
| 55 | +**Symbolic Link to Expected Workspace** |
| 56 | +
|
| 57 | +A significant number of commands in the Makefile are hardcoded with an assumed file structure of the CI container. To ensure paths specified in previous commands don’t break, a symlink was created from the hardcoded “expected” working directory `/go/src/github.com/cortexproject/cortex` to the actual working directory `$GITHUB_WORKSPACE`. |
| 58 | + |
| 59 | +```yaml |
| 60 | +- name: Sym link expected path to github workspace |
| 61 | + run: | |
| 62 | + mkdir -p /go/src/github.com/cortexproject/cortex |
| 63 | + ln -s $GITHUB_WORKSPACE/* /go/src/github.com/cortexproject/cortex |
| 64 | +``` |
| 65 | + |
| 66 | +**Sharing Artifacts Between Jobs** |
| 67 | + |
| 68 | +As of October 2020, GitHub Actions do not persist between different jobs in the same workflow. Each job is run on a fresh virtual environment (https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/introduction-to-github-actions#runners). As such, we need to upload and download artifacts to share data between jobs. |
| 69 | + |
| 70 | +| Artifact | Stored In | Used By | Purpose of Storing Artifact | |
| 71 | +|-------------------------------|-----------|---------------------------------------------|-----------------------------| |
| 72 | +| website public | build | deploy_website | share data between jobs | |
| 73 | +| Docker Images | build | deploy, integration, integrations-config-db | share data between jobs | |
| 74 | +| Frontend Protobuf | build | | long term storage | |
| 75 | +| Caching Index Client Protobuf | build | | long term storage | |
| 76 | +| Ring Protobuf | build | | long term storage | |
| 77 | +| Rules Protobuf | build | | long term storage | |
| 78 | + |
| 79 | +*Note:* Docker Images are zipped before uploading as a workaround. The images contain characters that are illegal in the upload-artifact action. |
| 80 | +```yaml |
| 81 | +- name: Compressing Images |
| 82 | + run: tar -zcvf images.tar.gz /tmp/images |
| 83 | + - name: Cache Images |
| 84 | + uses: actions/upload-artifact@v2 |
| 85 | + with: |
| 86 | + name: Docker Images |
| 87 | + path: ./images.tar.gz |
| 88 | +``` |
| 89 | +**Tags** |
| 90 | + |
| 91 | +As of Oct 2020, GitHub [does not support](https://github.202132.xyzmunity/t/using-regex-for-filtering/16427/2) regex for tag filtering. The regex /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/ was approximated using the available GitHub [filter patterns](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet) |
| 92 | +```yaml |
| 93 | +tags: |
| 94 | + - v[0-9]+.[0-9]+.[0-9]+** |
| 95 | +``` |
0 commit comments