all repos — litestore @ dbf405fc6efbbffd23eb2818dd37565a00ed370b

A minimalist nosql document store.

Tweaked workflows.
h3rald h3rald@h3rald.com
Sat, 26 Aug 2023 06:54:08 +0000
commit

dbf405fc6efbbffd23eb2818dd37565a00ed370b

parent

f54951d01de89b3c2eee1599283c7a3e3f130557

2 files changed, 3 insertions(+), 3 deletions(-)

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

@@ -76,13 +76,13 @@ if: matrix.os == 'windows-latest'

# Build for Linux - name: Build (Linux) - run: nimble build -v -y --passL:-static -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --gc:orc --opt:size litestore + run: nimble build -v -y --passL:-static -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc --mm:refc --dynLibOverride:sqlite3 --opt:size litestore if: matrix.os == 'ubuntu-latest' # Build for macOS/Windows - name: Build (macOS, Windows) shell: bash - run: nimble build -v -y -d:release --gc:orc --opt:size litestore + run: nimble build -v -y -d:release --mm:refc --dynLibOverride:sqlite3 --opt:size litestore if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' # Import admin directory and create default db
M .github/workflows/ci.yml.github/workflows/ci.yml

@@ -40,4 +40,4 @@ curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh

sh init.sh -y - name: Build - run: nimble build -y -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc + run: nimble build -y -d:release --gcc.exe:musl-gcc --gcc.linkerexe:musl-gcc -mm:refc --dynLibOverride:sqlite3