Updating workflows.
h3rald h3rald@h3rald.com
Mon, 31 Jul 2023 14:55:21 +0200
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'