environment: # Python version used MICROPY_CPYTHON3: c:/python34/python.exe init: # Set build version number to commit to be travis-like - ps: Update-AppveyorBuild -Version $env:appveyor_repo_commit.substring(0,8) configuration: - Debug - Release platform: - x86 - x64 before_build: - ps: | @" "@ | Set-Content build.proj build: project: build.proj parallel: true verbosity: normal test_script: - ps: | cd (Join-Path $env:APPVEYOR_BUILD_FOLDER 'tests') & $env:MICROPY_CPYTHON3 run-tests & $env:MICROPY_CPYTHON3 run-tests --via-mpy -d basics float micropython # After the build/test phase for the MSVC build completes, # build and test with mingw-w64, release versions only. after_test: - ps: | if ($env:configuration -eq 'Debug') { return } $env:MSYSTEM = if ($platform -eq 'x86') {'MINGW32'} else {'MINGW64'} $env:CHERE_INVOKING = 'enabled_from_arguments' cd (Join-Path $env:APPVEYOR_BUILD_FOLDER 'ports/windows') C:\msys64\usr\bin\bash.exe -l -c "make -B -j4 V=1" if ($LASTEXITCODE -ne 0) { throw "$env:MSYSTEM build exited with code $LASTEXITCODE" } cd (Join-Path $env:APPVEYOR_BUILD_FOLDER 'mpy-cross') # Building of mpy-cross hasn't been fixed across all possible windows/WSL/... # variations and the STRIP step tries to strip mpy-cross whereas that should be # mpy-cross.exe. Workaround for now by skipping actual strip and size commands. C:\msys64\usr\bin\bash.exe -l -c "make -B -j4 V=1 STRIP=echo SIZE=echo" if ($LASTEXITCODE -ne 0) { throw "$env:MSYSTEM mpy_cross build exited with code $LASTEXITCODE" } cd (Join-Path $env:APPVEYOR_BUILD_FOLDER 'tests') $testArgs = @('run-tests') foreach ($skipTest in @('math_fun', 'float2int_double', 'float_parse', 'math_domain_special')) { $testArgs = $testArgs + '-e' + $skipTest } & $env:MICROPY_CPYTHON3 $testArgs if ($LASTEXITCODE -ne 0) { throw "$env:MSYSTEM tests exited with code $LASTEXITCODE" } & $env:MICROPY_CPYTHON3 ($testArgs + @('--via-mpy', '-d', 'basics', 'float', 'micropython')) if ($LASTEXITCODE -ne 0) { throw "$env:MSYSTEM mpy-cross tests exited with code $LASTEXITCODE" } skip_tags: true deploy: off nuget: disable_publish_on_pr: true