Index: apps/build.tcl =================================================================== diff -u -r71dd75a1b2c084ab83c1adf6d25daff24576a924 -r89fc03bf0f5f882df13b2f1c026d13c9108b65da --- apps/build.tcl (.../build.tcl) (revision 71dd75a1b2c084ab83c1adf6d25daff24576a924) +++ apps/build.tcl (.../build.tcl) (revision 89fc03bf0f5f882df13b2f1c026d13c9108b65da) @@ -36,17 +36,19 @@ set tclDir [file normalize [file join tcl $dir]] - puts pwd([pwd])=[glob *] - puts tclDir($tclDir)=[glob $tclDir/*] + # puts pwd([pwd])=[glob *] + # puts tclDir($tclDir)=[glob $tclDir/*] set buildDir [pwd] cd $tclDir - puts ENV=$::env(PATH) - puts ENV=$::env(HOME) - exec >@stdout 2>@stderr bash -lc "echo \$PATH" - exec >@stdout 2>@stderr bash -lc "cd && pwd" - exec >@stdout 2>@stderr bash -lc "cd && ls -la" + + # puts ENV=$::env(PATH) + # puts ENV=$::env(HOME) + # exec >@stdout 2>@stderr bash -lc "echo \$PATH" + # exec >@stdout 2>@stderr bash -lc "cd && pwd" + # exec >@stdout 2>@stderr bash -lc "cd && ls -la" + exec >@stdout 2>@stderr bash -lc "./configure --libdir=$tclDir --enable-64bit" exec >@stdout 2>@stderr bash -lc "make" @@ -57,7 +59,7 @@ exec >@stdout 2>@stderr bash -lc "make test" } -puts ===$::argv +# puts ===$::argv ::build {*}$::argv Index: appveyor.yml =================================================================== diff -u -r2ab1670195927afe1bd605d99db4c724d1ce0465 -r89fc03bf0f5f882df13b2f1c026d13c9108b65da --- appveyor.yml (.../appveyor.yml) (revision 2ab1670195927afe1bd605d99db4c724d1ce0465) +++ appveyor.yml (.../appveyor.yml) (revision 89fc03bf0f5f882df13b2f1c026d13c9108b65da) @@ -2,18 +2,19 @@ image: Visual Studio 2017 -cache: -- x86_64-8.1.0-release-win32-seh-rt_v6-rev0.7z - environment: MINGW_DIR: mingw64 MINGW_URL: https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/8.1.0/threads-win32/seh/x86_64-8.1.0-release-win32-seh-rt_v6-rev0.7z MINGW_ARCHIVE: x86_64-8.1.0-release-win32-seh-rt_v6-rev0.7z TCLKIT_URL: http://kitcreator.rkeene.org/kits/43b2a6f8b159514a79e4330cb4d2dbb3a47f7acc/tclkit.exe TCLKIT: tclkit.exe matrix: - - TCLTAG: core-8-6-8 - - TCLTAG: core-8-6-branch + - TCLTAG=core-8-6-branch + - TCLTAG=core-8-6-8 + - TCLTAG=core-8-5-branch + - TCLTAG=core-8-5-19 + - TCLTAG=core-8-7-a1 + - TCLTAG=core-8-branch install: # - if not exist "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%" @@ -22,16 +23,10 @@ build_script: - set CHERE_INVOKING=1 - # - set PATH=%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH% - set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH% - - set PATH - # - set MSYS2_PATH_TYPE=inherit + # Needed to align MSYS and Windows HOME dirs - set HOME=C:\Users\appveyor - bash -lc "cd && echo \"export PATH=/c/msys64/mingw64/bin:/c/msys64/usr/bin:\$PATH; export MSYSTEM=MINGW64; export MINGW_PREFIX=/c/msys64/mingw64; \" >> .profile" - - bash -lc "env" - - bash -lc "cd && pwd" - - sh -lc "echo $PATH" - - bash -lc "/bin/sh -lc \"echo \$PATH\"" - tclkit.exe apps/build.tcl %CD% %APPVEYOR_BUILD_FOLDER% %TCLTAG% on_failure: