all repos — min @ 32a74a1803951e9fdd44ee5a165dc1c1186b1f7d

A small but practical concatenative programming language.

Updating workflows.
h3rald h3rald@h3rald.com
Mon, 31 Jul 2023 14:55:21 +0200
commit

32a74a1803951e9fdd44ee5a165dc1c1186b1f7d

parent

fe0f0e3416ae1eaeec7ffc4b8f902234007c92c3

1 files changed, 8 insertions(+), 3 deletions(-)

jump to
M .github/workflows/test.yml.github/workflows/test.yml

@@ -65,7 +65,7 @@ if: matrix.os == 'ubuntu-latest'

# Build for macOS/Windows - name: Build (macOS, Windows) - run: nimble build -d:release -d:ssl -d:useOpenSsl3 --opt:size + run: echo $pwd; nimble build -d:release -d:ssl -d:useOpenSsl3 --opt:size if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest' # UPX compress (*nix)

@@ -91,7 +91,12 @@ - name: Test

run: ./min tests/all.min if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest' - # Test (*Windows) + # Print PWD (Windows) + - name: Print PWD + run: echo $pwd + if: matrix.os == 'windows-latest' + + # Test (Windows) - name: Test - run: pwd; min.exe tests/all.min + run: .\min.exe tests/all.min if: matrix.os == 'windows-latest'