CI: use build_nim.sh

This commit is contained in:
Ștefan Talpalaru 2019-06-13 13:09:12 +02:00
parent 774f5c8232
commit f546a70563
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
2 changed files with 19 additions and 85 deletions

View File

@ -1,9 +1,9 @@
version: '{build}' version: '{build}'
image: Visual Studio 2015
cache: cache:
- x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z - NimBinaries
- i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
- Nim
matrix: matrix:
# We always want 32 and 64-bit compilation # We always want 32 and 64-bit compilation
@ -13,70 +13,18 @@ platform:
- x86 - x86
- x64 - x64
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
clone_depth: 10
install: install:
- git submodule update --init --recursive - git submodule update --init --recursive
- setlocal EnableExtensions EnableDelayedExpansion
- IF "%PLATFORM%" == "x86" (
SET "MINGW_ARCHIVE=i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z" &
SET "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" &
SET "MINGW_DIR=mingw32"
) ELSE (
IF "%PLATFORM%" == "x64" (
SET "MINGW_ARCHIVE=x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z" &
SET "MINGW_URL=https://sourceforge.net/projects/mingw-w64/files/Toolchains%%20targetting%%20Win64/Personal%%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z" &
SET "MINGW_DIR=mingw64"
) else (
echo "Unknown platform"
)
)
- SET PATH=%CD%\%MINGW_DIR%\bin;%CD%\Nim\bin;%PATH%
# Unpack mingw
- IF NOT EXIST "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
- 7z x -y "%MINGW_ARCHIVE%" > nul
# build nim from our own branch - this to avoid the day-to-day churn and # build nim from our own branch - this to avoid the day-to-day churn and
# regressions of the fast-paced Nim development while maintaining the # regressions of the fast-paced Nim development while maintaining the
# flexibility to apply patches # flexibility to apply patches
- SET "NEED_REBUILD=" - curl -O -L -s -S https://raw.githubusercontent.com/status-im/nimbus/devel/build_nim.sh
- env MAKE="mingw32-make -j2" ARCH_OVERRIDE=%PLATFORM% bash build_nim.sh Nim csources dist/nimble NimBinaries
- IF NOT EXIST "Nim\\.git\\" ( - SET PATH=%CD%\Nim\bin;%PATH%
git clone https://github.com/status-im/Nim.git
) ELSE (
( cd Nim ) &
( git pull ) &
( cd .. )
)
# Rebuild Nim if HEAD has moved or if we don't yet have a cached version
- IF NOT EXIST "Nim\\ver.txt" (
SET NEED_REBUILD=1
) ELSE (
( CD Nim ) &
( git rev-parse HEAD > ..\\cur_ver.txt ) &
( fc ver.txt ..\\cur_ver.txt || SET NEED_REBUILD=1 ) &
( cd .. )
)
- IF NOT EXIST "Nim\\bin\\nim.exe" SET NEED_REBUILD=1
- IF NOT EXIST "Nim\\bin\\nimble.exe" SET NEED_REBUILD=1
# after building nim, wipe csources to save on cache space
- IF DEFINED NEED_REBUILD (
cd Nim &
( IF EXIST "csources" rmdir /s /q csources ) &
git clone --depth 1 https://github.com/nim-lang/csources &
cd csources &
( IF "%PLATFORM%" == "x64" ( build64.bat ) else ( build.bat ) ) &
cd .. &
bin\nim c koch &
koch boot -d:release &
koch nimble &
git rev-parse HEAD > ver.txt &
rmdir /s /q csources
)
build_script: build_script:
- cd C:\projects\%APPVEYOR_PROJECT_SLUG% - cd C:\projects\%APPVEYOR_PROJECT_SLUG%

View File

@ -1,18 +1,15 @@
language: c # or other C/C++ variants language: c
# xenial is required for GO 1.11.x
# dist: xenial
sudo: false
# https://docs.travis-ci.com/user/caching/ # https://docs.travis-ci.com/user/caching/
#
# Caching the whole nim folder is better than relying on ccache - this way, we
# skip the expensive bootstrap process and linking
cache: cache:
directories: directories:
- nim - NimBinaries
- $HOME/go/src/gx - $HOME/go/src/gx
git:
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
depth: 10
matrix: matrix:
include: include:
- os: linux - os: linux
@ -26,25 +23,14 @@ matrix:
update: true update: true
before_install: before_install:
- export GOPATH=$HOME/go - export GOPATH=$HOME/go
install: install:
# build nim from our own branch - this to avoid the day-to-day churn and # build nim from our own branch - this to avoid the day-to-day churn and
# regressions of the fast-paced Nim development while maintaining the # regressions of the fast-paced Nim development while maintaining the
# flexibility to apply patches # flexibility to apply patches
# - curl -O -L -s -S https://raw.githubusercontent.com/status-im/nimbus/devel/build_nim.sh
# check version of remote branch - env MAKE="make -j2" bash build_nim.sh Nim csources dist/nimble NimBinaries
- "export NIMVER=$(git ls-remote https://github.com/status-im/nim.git HEAD | cut -f 1)" - export PATH="$PWD/Nim/bin:$GOPATH/bin:$PATH"
# after building nim, wipe csources to save on cache space
- "{ [ -f nim/$NIMVER/bin/nim ] && [ -f nim/$NIMVER/bin/nimble ] ; } ||
{ rm -rf nim ;
mkdir -p nim ;
git clone --depth=1 https://github.com/status-im/nim.git nim/$NIMVER ;
cd nim/$NIMVER ;
sh build_all.sh ;
rm -rf csources ;
cd ../.. ;
}"
- export PATH=$PWD/nim/$NIMVER/bin:$GOPATH/bin:$PATH
- go version - go version
- git clone https://github.com/libp2p/go-libp2p-daemon - git clone https://github.com/libp2p/go-libp2p-daemon
- cd go-libp2p-daemon - cd go-libp2p-daemon