Skip to content

Latest commit

 

History

History
67 lines (40 loc) · 3.68 KB

File metadata and controls

67 lines (40 loc) · 3.68 KB

amp-devcontainer

Linting & Formatting Build & Push OpenSSF Scorecard

Overview

This repository contains a devcontainer tailored towards modern (embedded) C++ development.

State

This repository is under active development; see pulse for more details;

Description

The amp-devcontainer built from this repository contains compilers and tools to facilitate modern (embedded) C++ development. The amp-devcontainer includes support for host- and cross-compilation using gcc, arm-gcc and clang compilers. Next to the compilers there is support for code-coverage measurement, mutation testing (using mull), fuzzing (using libfuzzer) and static analysis (clang-format, clang-tidy, clangd, include-what-you-use). The default build system is set up to use CMake, Ninja and CCache.

For the full list of all included tools and tool versions see the Dependency Graph, the SBOM published with a release, or the SBOM attached to the image.

Build & Test

The container can be built and tested locally by importing this repository in VS Code with the Dev Containers (ms-vscode-remote.remote-containers) plug-in installed. As a prerequisite Docker needs to be installed on the host system. As an alternative a GitHub Codespace can be started.

A test task is available to run the included bats tests. Choose Tasks: Run Task from the command pallette and choose Run Tests.

Verify image signature

The container image is signed with SigStore Cosign using a keyless signing method.

The signature can be verified with the following command (using Docker), verifying that the image is actually signed by the GitHub CI system:

docker run --rm gcr.io/projectsigstore/cosign verify ghcr.io/philips-software/amp-devcontainer --certificate-oidc-issuer https://token.actions.githubusercontent.com --certificate-identity-regexp https://github.com/philips-software/amp-devcontainer

Usage

The resulting container can be used in a .devcontainer folder. While the example uses the latest tag, it is recommended to pin to a specific version. Or better yet, a specific SHA.

.devcontainer/devcontainer.json

{
    "image": "ghcr.io/philips-software/amp-devcontainer:latest"
}

Community

This project uses the CODE_OF_CONDUCT to define expected conduct in our community. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting a project CODEOWNER

Changelog

See CHANGELOG for more info on what's been changed.

Contributing

See CONTRIBUTING

Licenses

See LICENSE