use github actions instead (#605)

* Create actions
This commit is contained in:
coco875
2024-04-13 02:54:59 +02:00
committed by GitHub
parent 2d3278d073
commit e2c19fd4bc
17 changed files with 227 additions and 19905 deletions
+1 -1
View File
@@ -5,6 +5,6 @@
/displaylist_packer
/tkmk00
/extract_data_for_mio
/torch/build-cmake/*
/torch/cmake-build-release/*
__pycache__
*.pyc
+1 -1
View File
@@ -55,7 +55,7 @@ if __name__ == "__main__":
doxygen_formatted_content = process_map_file(map_file_path)
# Specify the output file path
output_file_path = "tools/doxygen_syms.md"
output_file_path = "docs/doxygen_syms.md"
# Write the result to the output file
with open(output_file_path, 'w') as output_file:
-19841
View File
File diff suppressed because it is too large Load Diff
+6
View File
@@ -0,0 +1,6 @@
import subprocess
bp = subprocess.Popen("tools/mingw64/w64devkit.exe", stdin=subprocess.PIPE)
bp.stdin.write(b"make assets && make -j && exit\n")
bp.stdin.close()
exit(bp.wait())