Skip to content

Commit

Permalink
update to automator
Browse files Browse the repository at this point in the history
  • Loading branch information
ynput committed Dec 10, 2024
1 parent 681c723 commit 34db067
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions AyonBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"Run Cmake Config Commmand",
Cmake.cmake_command,
AyonCppApiPrj,
None,
"-S",
".",
"-B",
Expand All @@ -72,6 +73,7 @@
"Run Cmake Build Command",
Cmake.cmake_command,
AyonCppApiPrj,
None,
"--build",
"build",
"--config",
Expand All @@ -81,11 +83,12 @@
"Run Cmake Install Command",
Cmake.cmake_command,
AyonCppApiPrj,
None,
"--install",
"build",
),
)
BuildStage.addArtefactFoulder("bin")
BuildStage.addArtefactFolder("bin")
AyonCppApiPrj.add_stage(BuildStage)


Expand All @@ -99,7 +102,7 @@
AyonCppApiPrj,
),
)
DoxyGenStage.addArtefactFoulder("Docs/html")
DoxyGenStage.addArtefactFolder("Docs/html")
AyonCppApiPrj.add_stage(DoxyGenStage)


Expand All @@ -112,6 +115,7 @@ def startTestApp():
"bin/AyonCppApiGtestMain",
f"{AyonCppApiPrj._build_artefacts_out_path}/GTest/Test.xml",
AyonCppApiPrj,
None,
)


Expand Down Expand Up @@ -196,8 +200,8 @@ def stopTestServer():
Project.Func("Run GBench Batch Bench", runBatchBench),
Project.Func("Run GBench All Benchmark's", runAllBench),
)
BenchStage.addArtefactFoulder("bin/profBatch.json")
BenchStage.addArtefactFoulder("bin/profSerial.json")
BenchStage.addArtefactFolder("bin/profBatch.json")
BenchStage.addArtefactFolder("bin/profSerial.json")
AyonCppApiPrj.add_stage(BenchStage)


Expand Down
2 changes: 1 addition & 1 deletion ayon_automator

0 comments on commit 34db067

Please sign in to comment.