Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aklomp committed Jan 28, 2024
1 parent 8f3212f commit 63339f7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -197,6 +197,7 @@ jobs:
make
${{ matrix.env }}${{ matrix.toolchain || 'toolchain' }}
${{ matrix.env }}cmake
unzip
- name: CMake Configure
shell: msys2 {0}
run: >
Expand All @@ -212,6 +213,9 @@ jobs:
- name: CTest
shell: msys2 {0}
run: ctest --no-tests=error --test-dir out -VV --build-config Release
- name: Issue 137 repro
shell: msys2 {0}
run: ./test/ci/issue137.sh

msys2-makefile-test:
name: msys2-makefile-${{ matrix.msystem }}
Expand Down
10 changes: 10 additions & 0 deletions test/ci/issue137.sh
@@ -0,0 +1,10 @@
#!/bin/bash
set -xev

wget https://github.com/aklomp/base64/files/14074869/in.bin.zip
unzip in.bin.zip

bin/base64 in.bin > in.bin.b64
bin/base64 -d in.bin.b64 > out.bin

md5sum in.bin out.bin

0 comments on commit 63339f7

Please sign in to comment.