mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 03:55:04 -05:00
use a single docker image for all testing environments unify some CI jobs on this single environment also parameterize the build of the doc, which no longer have a hardcoded path for the compiler build directory
18 lines
308 B
Bash
Executable File
18 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "You must provide the compiler build directory"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p links_to_compiler_build/md
|
|
|
|
cd links_to_compiler_build/md
|
|
|
|
yourfilenames=`find $1/tools/concretelang/docs/concretelang -name "*.md"`
|
|
|
|
for entry in $yourfilenames
|
|
do
|
|
ln -s "$entry" -f
|
|
done
|