Skip to content

Commit

Permalink
Document GitHub Actions (#6342)
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou authored Jul 9, 2024
1 parent 3549c75 commit 99fbf1b
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 43 deletions.
87 changes: 87 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
Documents the various GitHub Actions workflows, the role they fulfil and 3rd party dependencies if any.

# Backport

Attempts to auto-open backport PRs from main to LTS branch(es) whenever possible. This works well in the absence of conflicts, typically early on during the life of an LTS, and less well later. The alternatives are running the backport tool manually, or cherry picking commits.
Triggered when the label `auto-backport` is applied to a PR, along with the `X.*-todo` label to set the target branch.

File: `backport.yml`
3rd party dependencies: `sorenlouv/backport-github-action@main`

# Bencher

Builds and runs CCF performance tests, both end to end and micro-benchmarks. Results are posted to bencher.dev, and [plotted to make regressions obvious](https://bencher.dev/console/projects/ccf/plots).
Triggered on every commit on `main`, but not on PR builds because the setup required to build from forks is complex and fragile in terms of security, and the increase in pool usage would be substantial.

File: `bencher.yml`
3rd party dependencies: `bencherdev/bencher@main`

# CI Containers GHCR

Produces the build images used by nearly all other actions, particularly CI and release from 5.0.0-rc0 onwards. Complete images are attested and published to GHCR.
Triggered on label creation (`build/*`).

File: `ci-containers-ghcr.yml`
3rd party dependencies:

- `docker/login-action@v3`
- `docker/metadata-action@v5`
- `docker/build-push-action@v6`

# CI

Main continuous integration job. Builds CCF for all target platforms, runs unit, end to end and partition tests for SGX and Virtual. Run on every commit, including PRs from forks, gates merging.

File: `ci.yml`
3rd party dependencies: None

# CodeQL analysis

Builds CCF with CodeQL, and runs the security-extended checks. Triggered on every commit on main, plus PRs that affect ".github/workflows/codeql-analysis.yml".

File: `codeql-analysis.yml`
3rd party dependencies: None

# Release

Produces CCF release artefacts from 5.0.0-rc0 onwards, for all languages and platforms. Triggered on tag matching "ccf-5.\*". The output of the job is a draft release, which needs to be published manually. Publishing triggers the downstream jobs listed below.

File: `release.yml`
3rd party dependencies: None

# Containers GHCR

Produces reference release images from 5.0.0-rc0 onwards. Complete images are attested and published to GHCR. Triggered on release publishing.

File: `containers-ghcr.yml`
3rd party dependencies:

- `docker/login-action@v3`
- `docker/metadata-action@v5`
- `docker/build-push-action@v6`

# NPM

Publishes ccf-app TS package from a GitHub release to NPM. Triggered on release publishing.

File: `npm.yml`
3rd party dependencies: None

# PyPI

Publishes ccf Python package from a GitHub release to PyPI. Triggered on release publishing.

File: `pypi.yml`
3rd party dependencies: None

# Deprecated

The following pipelines are still here to support 4.x, but will be removed when it reaches EOL.

## CI containers ACR/MCR

File: `ci-containers.yml`

## Release containers ACR/MCR

File: `containers.yml`
23 changes: 0 additions & 23 deletions .github/workflows/ci-checks.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,20 @@ permissions:
checks: write

jobs:
checks:
name: "Format and License Checks"
runs-on: ubuntu-latest
container: ghcr.io/microsoft/ccf/ci/default:build-26-06-2024

steps:
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout repository
uses: actions/checkout@v4
- run: ./scripts/ci-checks.sh

build_and_test:
name: CI
needs: checks
strategy:
matrix:
platform:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Insufficient space to run on public runner, so use custom pool
runs-on: [self-hosted, 1ES.Pool=gha-virtual-ccf-sub]
container:
image: ccfmsrc.azurecr.io/ccf/ci:2024-06-26-virtual-clang15
image: ghcr.io/microsoft/ccf/ci/default:build-26-06-2024
options: --user root

permissions:
Expand Down
19 changes: 0 additions & 19 deletions .github/workflows/daily-check.yml

This file was deleted.

0 comments on commit 99fbf1b

Please sign in to comment.