1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-03 06:03:17 +02:00

ci: Add docker based test framework

* Add documentation
* Add .dockerignore: minimize docker context size to improve speed
* Add Makefile: to easily run various docker stages
* Add a CMake sample project to check CMake install rules
This commit is contained in:
Corentin Le Molgat
2021-10-25 16:06:43 +02:00
committed by Mizux
parent ca84b91d34
commit ccc3a51e4c
10 changed files with 835 additions and 0 deletions

7
ci/doc/generate_image.sh Executable file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env bash
set -ex
rm -f ./*.svg ./*.png
for i in *.dot; do
plantuml -Tsvg "$i";
done