Skip to content

Commit

Permalink
F! appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
rivy committed May 8, 2018
1 parent 3161db7 commit 70e49e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ install:
# * note: optional external file(s), global scope => allows ".appveyor.yml" to remain more stable and similar [or the same] between different distributions [eg, for automated distribution of ".appveyor.yml" changes]
- if EXIST ".appveyor_init.BAT" ( call .appveyor_init.BAT )
- ps: if ( test-path ".appveyor_init.PS1" ) { . ".\.appveyor_init.PS1" }
# save baseline environment (for later logging of overrides)
- ps: $base_env = @(get-childitem env:)
# create a working area
- ps: if ( ! $env:CI_TEMP_DIR ) { $env:CI_TEMP_DIR = "${env:TEMP}\${env:APPVEYOR_JOB_ID}" ; mkdir -force $env:CI_TEMP_DIR | out-null }
# create cache area, if missing
Expand All @@ -80,6 +82,9 @@ install:
# resolve requested coverage with needed configuration
- ps: . "${env:CI_HELPERS}\install.evaluate-coverage.ps1"
##
# highlight any overrides
- ps: $base_env | & "${env:CI_HELPERS}\log-env-overrides.ps1"
##
# move "C:\mingw" to avoid cross library linking (a problem with older perl versions, breaking dll compilation with "/mingw/lib/dllcrt2.o:(.text+0xd1): undefined reference to `__dyn_tls_init_callback'")
# * only truly needed for modules containing XS compilation, but ok for all modules
- move c:\mingw c:\mingw.o >NUL
Expand Down

0 comments on commit 70e49e9

Please sign in to comment.