Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

Latest commit

 

History

History
20 lines (14 loc) · 613 Bytes

Readme.md

File metadata and controls

20 lines (14 loc) · 613 Bytes

Docker image with Qbs, clang and Qt

This docker image is used to run continuious integrations and local builds with the Qbs build system.

The image contains a clang as the main compiler. The qt variants also contain some qt module.

Usage

Use it like qbs command line.

docker run -it \
    --mount src="$(pwd)",target=/build,type=bind \
    -w /build \
    qbs-clang10:latest \
    build -d /tmp/qbs -p autotest-runner

This mounts your current directory to /build in the container. Changes the workdir to /build and runs qbs with build path /tmp/qbs and targets the autotest-runner.