mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
47 lines
1.7 KiB
YAML
47 lines
1.7 KiB
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
- TARGET: i686-pc-windows-msvc
|
|
- TARGET: i686-pc-windows-gnu
|
|
MINGW_URL: https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/dwarf/i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z/download
|
|
MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
|
|
MINGW_DIR: mingw32
|
|
DIR_TEMP_MINGW: C:\cached\mingw
|
|
- TARGET: x86_64-pc-windows-gnu
|
|
MSYS_BITS: 64
|
|
|
|
install:
|
|
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
|
|
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin;C:\MinGW\bin
|
|
|
|
# Use the system msys if we can
|
|
- if defined MSYS_BITS set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
|
|
|
|
- ps: >-
|
|
if ((Test-Path Env:\MINGW_ARCHIVE) -and -not (Test-Path "${env:DIR_TEMP_MINGW}\${env:MINGW_ARCHIVE}")) {
|
|
if (Test-Path "${env:DIR_TEMP_MINGW}") {
|
|
rm -Recurse ${env:DIR_TEMP_MINGW}\*;
|
|
}
|
|
New-Item -ItemType Directory -Force -Path ${env:DIR_TEMP_MINGW} | Out-Null;
|
|
$download_loc = ${env:MINGW_URL};
|
|
Start-FileDownload $download_loc -FileName "${env:DIR_TEMP_MINGW}\${env:MINGW_ARCHIVE}";
|
|
}
|
|
- if defined MINGW_ARCHIVE 7z x -y "%DIR_TEMP_MINGW%\%MINGW_ARCHIVE%" > nul
|
|
- if defined MINGW_ARCHIVE set PATH=%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
|
|
|
|
- rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
|
|
|
- rustc -V
|
|
- cargo -V
|
|
|
|
artifacts:
|
|
- path: target\debug\uutils.exe
|
|
name: uutils.exe
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --no-fail-fast --features "nightly generic" --no-default-features
|
|
|
|
cache:
|
|
- c:\cached
|