We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f787c7e commit 6b4246cCopy full SHA for 6b4246c
1 file changed
.github/workflows/build-windows.yml
@@ -37,12 +37,15 @@ jobs:
37
- name: Build
38
run: cmake --build build --config Release --parallel
39
40
+ - name: Add DLL to PATH
41
+ if: inputs.run_tests
42
+ shell: pwsh
43
+ run: echo "$(pwd)/build/redasm/Release" >> $env:GITHUB_PATH
44
+
45
- name: Run tests
46
if: inputs.run_tests
- shell: bash
- run: |
- echo "$(pwd)/build/redasm/Release" >> $GITHUB_PATH
- ctest --test-dir build -C Release --output-on-failure
47
48
+ run: ctest --test-dir build -C Release --output-on-failure
49
50
- name: Install
51
run: cmake --install build --prefix redasm-windows-x86_64 --config Release
0 commit comments