Updated linux libmarkdown; update nimble release task to remove x86 and ARM.
h3rald h3rald@h3rald.com
Thu, 16 Apr 2020 08:54:12 +0200
2 files changed,
0 insertions(+),
16 deletions(-)
M
hastyscribe.nimble
→
hastyscribe.nimble
@@ -29,9 +29,7 @@ # Tasks
const compile = "nim c -d:release" - linux_x86 = "--cpu:i386 --os:linux" linux_x64 = "--cpu:amd64 --os:linux" - linux_arm = "--cpu:arm --os:linux" windows_x64 = "--cpu:amd64 --os:windows" macosx_x64 = "" hs = "src/hastyscribe"@@ -47,14 +45,8 @@
task windows_x64_build, "Build HastyScribe for Windows (x64)": shell compile, windows_x64, hs_file -task linux_x86_build, "Build HastyScribe for Linux (x86)": - shell compile, linux_x86, hs_file - task linux_x64_build, "Build HastyScribe for Linux (x64)": shell compile, linux_x64, hs_file - -task linux_arm_build, "Build HastyScribe for Linux (ARM)": - shell compile, linux_arm, hs_file task macosx_x64_build, "Build HastyScribe for Mac OS X (x64)": shell compile, macosx_x64, hs_file@@ -67,14 +59,6 @@ shell "rm", hs & ".exe"
echo "\n\n\n LINUX - x64:\n\n" linux_x64_buildTask() shell zip, filename_for("linux", "x64"), hs - shell "rm", hs - echo "\n\n\n LINUX - x86:\n\n" - linux_x86_buildTask() - shell zip, filename_for("linux", "x86"), hs - shell "rm", hs - echo "\n\n\n LINUX - ARM:\n\n" - linux_arm_buildTask() - shell zip, filename_for("linux", "arm"), hs shell "rm", hs echo "\n\n\n MAC OS X - x64:\n\n" macosx_x64_buildTask()