Skip to content

Commit 93a24af

Browse files
committed
rewrite all pptt generate codes witb human power.
1 parent 54752d0 commit 93a24af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2995
-6705
lines changed

.github/workflows/build-and-upload-aml.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
- name: Run test suite
3030
run: |
3131
set -euo pipefail
32-
python3 -m pip install --upgrade pip
33-
python3 -m pip install -r requirements.txt
34-
python3 test/run_all_tests.py
32+
cd build
33+
make test
3534
3635
- name: Collect AMLs into per-platform directories
3736
id: prepare
@@ -40,12 +39,12 @@ jobs:
4039
mkdir -p artifacts
4140
platforms=()
4241
43-
for dir in build/*/builtin; do
42+
for dir in build/*/; do
4443
if [ -d "$dir" ]; then
4544
shopt -s nullglob
4645
aml_files=("$dir"/*.aml)
4746
if [ ${#aml_files[@]} -gt 0 ]; then
48-
platform=$(basename "$(dirname "$dir")")
47+
platform=$(basename "$dir")
4948
echo "Packaging $platform into directory..."
5049
mkdir -p "artifacts/${platform}"
5150
cp -f "$dir"/*.aml "artifacts/${platform}/" || true

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
*.aml
2+
*.dsl
3+
*.bin
24
*.o
35
*.dts
46
*.dtb
57
*.pyc
68

9+
.cache/
710
build/
811
.vscode/
9-
__pycache__/
12+
__pycache__/
13+
CMakeFiles/

0 commit comments

Comments
 (0)