fix _readme tests
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
module readme
|
module github.com/goplus/llgo/doc/_readme
|
||||||
|
|
||||||
go 1.24.1
|
go 1.20
|
||||||
|
|
||||||
require github.com/goplus/lib v0.1.0
|
require github.com/goplus/lib v0.1.0
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
cd ./doc/_readme/ || exit 1
|
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
|
||||||
llgo build -v ./...
|
cd "$DIR" || exit 1
|
||||||
|
|
||||||
python3 -m venv .venv
|
python3 -m venv .venv
|
||||||
# shellcheck source=/dev/null
|
# shellcheck source=/dev/null
|
||||||
@@ -11,9 +11,10 @@ PYTHONPATH=""
|
|||||||
PYTHONPATH=$(python -c "import sys; print(':'.join(sys.path))")
|
PYTHONPATH=$(python -c "import sys; print(':'.join(sys.path))")
|
||||||
export PYTHONPATH
|
export PYTHONPATH
|
||||||
|
|
||||||
for dir in ./*/; do
|
for sub in ./*/; do
|
||||||
if grep -q "func main()" "$dir"/*.go 2>/dev/null; then
|
if grep -q "func main()" "$DIR/$sub"/*.go 2>/dev/null; then
|
||||||
echo "Running examples in $dir"
|
echo "Running examples in $sub"
|
||||||
llgo run "$dir"
|
cd "$DIR/$sub" || exit 1
|
||||||
|
llgo run .
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user