Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Dec 4, 2024
1 parent 7ccee51 commit 195c8e0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,13 @@ build: off
test_script: ci\build.bat

for:
- matrix:
only: [FLAVOR: 'mingw64 (32-bit)']
build_script: |
echo %PATH%
cd %ADDPATH%
dir /s *.dll
# CodeCov coverage build
- matrix:
only: [COVERAGE: true]
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,15 @@ jobs:
with:
path: ${{env.DEP_DIR}}
key: ${{matrix.os}}-${{matrix.generator}}-${{env.BOOST_VERSION}}
- name: COMPILERS
if: matrix.os == 'windows-2019'
run: |
for i in libstdc++-6.dll libgcc_s_seh-1.dll libwinpthread-1.dll; do
echo "- $i"
diff -q /c/mingw64/bin/$i /c/mingw64/x86_64-w64-mingw32/lib/$i || echo "Different"
diff -q /c/mingw64/bin/$i /mingw64/bin/$i || echo "Different2"
done
echo "/c/mingw64/x86_64-w64-mingw32/lib" >> "$GITHUB_PATH"
# Install newer CMake to be able to find Boost
- name: Install CMake
if: runner.os == 'Linux' && matrix.standalone == 'Boost'
Expand Down

0 comments on commit 195c8e0

Please sign in to comment.