Skip to content

Commit

Permalink
DEBUG appveyor 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Dec 5, 2024
1 parent 5f93111 commit d96b3cf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,13 @@ install:

build: off

test_script: ci\build.bat
test_script: |
if defined ADDPATH (
cd %ADDPATH%
dir
cd %APPVEYOR_BUILD_FOLDER%
)
ci\build.bat
for:
# CodeCov coverage build
Expand Down
15 changes: 15 additions & 0 deletions ci/run.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
@echo off
echo PATH=%PATH%

if EXIST C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin (
cd C:\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin
dir
) ELSE (
echo MISSING MINGW
)
if DEFINED ADDPATH (
ECHO %ADDPATH%
cd %ADDPATH%
dir
cd %APPVEYOR_BUILD_FOLDER%
)

0 comments on commit d96b3cf

Please sign in to comment.