all repos — pls @ 35a3fc34a89656c17c9378404d6fe4e8c09bdf4b

A polite but determined task runner.

Minor improvements.
h3rald h3rald@h3rald.com
Mon, 08 Nov 2021 10:08:46 +0100
commit

35a3fc34a89656c17c9378404d6fe4e8c09bdf4b

parent

71bafefe66eed0fe96a98b7620a5b3adfa1e7baa

2 files changed, 4 insertions(+), 1 deletions(-)

jump to
M .github/workflows/add-artifacts-to-current-release.yml.github/workflows/add-artifacts-to-current-release.yml

@@ -58,7 +58,7 @@ sh init.sh -y

# Build for Linux - name: Build (Linux) - run: nim c -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --gc:orc --deepcopy:on --opt:size pls + run: nim c -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --gc:orc --opt:size pls if: matrix.os == 'ubuntu-latest' # Build for macOS/Windows
M src/pls.nim.cfgsrc/pls.nim.cfg

@@ -10,3 +10,6 @@ # http://crossgcc.rts-software.org/doku.php?id=compiling_for_linux

amd64.linux.gcc.path = "/usr/local/bin" amd64.linux.gcc.exe = "x86_64-linux-musl-gcc" amd64.linux.gcc.linkerexe = "x86_64-linux-musl-gcc" + +--gc = "orc" +--opt = "size"