2019-09-23 16:32:34 +00:00
|
|
|
jobs:
|
|
|
|
- job: Windows
|
|
|
|
|
|
|
|
pool:
|
|
|
|
vmImage: windows-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
32-bit:
|
|
|
|
PLATFORM: x86
|
|
|
|
64-bit:
|
|
|
|
PLATFORM: x64
|
|
|
|
steps:
|
2019-10-17 13:21:45 +00:00
|
|
|
- task: CacheBeta@1
|
2019-09-23 16:32:34 +00:00
|
|
|
displayName: 'cache Nim binaries'
|
|
|
|
inputs:
|
2019-10-17 13:21:45 +00:00
|
|
|
key: NimBinaries | $(Agent.OS) | $(PLATFORM) | $(Build.SourceBranchName)
|
2019-09-23 16:32:34 +00:00
|
|
|
path: NimBinaries
|
|
|
|
|
2019-10-17 13:21:45 +00:00
|
|
|
- task: CacheBeta@1
|
2019-09-23 16:32:34 +00:00
|
|
|
displayName: 'cache p2pd binaries'
|
|
|
|
inputs:
|
2019-10-17 13:21:45 +00:00
|
|
|
key: p2pdCache | $(Agent.OS) | $(PLATFORM) | $(Build.SourceBranchName)
|
2019-09-23 16:32:34 +00:00
|
|
|
path: p2pdCache
|
|
|
|
|
2019-10-17 13:21:45 +00:00
|
|
|
- task: CacheBeta@1
|
2019-09-23 16:32:34 +00:00
|
|
|
displayName: 'cache LFS JSON fixtures'
|
|
|
|
inputs:
|
|
|
|
key: jsonTestsCache
|
|
|
|
path: jsonTestsCache
|
|
|
|
|
2019-10-17 13:21:45 +00:00
|
|
|
- task: CacheBeta@1
|
2019-09-23 16:32:34 +00:00
|
|
|
displayName: 'cache MinGW-w64'
|
|
|
|
inputs:
|
2019-10-17 13:21:45 +00:00
|
|
|
key: mingwCache | 8_1_0 | $(PLATFORM)
|
2019-09-23 16:32:34 +00:00
|
|
|
path: mingwCache
|
|
|
|
|
|
|
|
- powershell: |
|
|
|
|
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
|
|
|
|
displayName: 'long path support'
|
|
|
|
|
|
|
|
- bash: |
|
|
|
|
set -e
|
2019-10-17 13:21:45 +00:00
|
|
|
echo "Installing MinGW-w64"
|
2019-09-23 16:32:34 +00:00
|
|
|
if [[ $PLATFORM == "x86" ]]; then
|
|
|
|
MINGW_FILE="i686-8.1.0-release-posix-dwarf-rt_v6-rev0.7z"
|
2019-10-17 13:21:45 +00:00
|
|
|
MINGW_URL="https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/8.1.0/threads-posix/dwarf/${MINGW_FILE}"
|
|
|
|
MINGW_DIR="mingw32"
|
|
|
|
else
|
|
|
|
MINGW_FILE="x86_64-8.1.0-release-posix-seh-rt_v6-rev0.7z"
|
|
|
|
MINGW_URL="https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/8.1.0/threads-posix/seh/${MINGW_FILE}"
|
|
|
|
MINGW_DIR="mingw64"
|
2019-09-23 16:32:34 +00:00
|
|
|
fi
|
2019-10-17 13:21:45 +00:00
|
|
|
mkdir -p mingwCache
|
|
|
|
cd mingwCache
|
|
|
|
if [[ ! -e "$MINGW_FILE" ]]; then
|
|
|
|
rm -f *.7z
|
|
|
|
curl -OLsS "$MINGW_URL"
|
|
|
|
fi
|
|
|
|
7z x -y -bd "$MINGW_FILE" >/dev/null
|
|
|
|
mkdir -p /c/custom
|
|
|
|
mv "$MINGW_DIR" /c/custom/
|
|
|
|
cd ..
|
|
|
|
export PATH="/c/custom/${MINGW_DIR}/bin:$PATH"
|
2019-09-23 16:32:34 +00:00
|
|
|
echo "Fetching submodules"
|
|
|
|
git config --global core.longpaths true
|
|
|
|
export GIT_LFS_SKIP_SMUDGE=1
|
|
|
|
git submodule --quiet update --init --recursive
|
2019-11-01 08:44:16 +00:00
|
|
|
scripts/setup_official_tests.sh jsonTestsCache
|
2019-09-23 16:32:34 +00:00
|
|
|
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} CI_CACHE=NimBinaries update
|
|
|
|
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} fetch-dlls
|
|
|
|
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} P2PD_CACHE=p2pdCache
|
|
|
|
file build/beacon_node
|
|
|
|
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} DISABLE_LFS_SCRIPT=1 test
|
|
|
|
displayName: 'build and test'
|