-
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
114 changed files
with
3,415 additions
and
2,899 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
steps: | ||
- bash: | | ||
set -e | ||
uname -a | ||
./.ci/linux-cxx-install.sh | ||
displayName: Install | ||
- bash: | | ||
set -e | ||
cd src/engine | ||
set PATH=${PATH};${CXX_PATH} | ||
./build.sh ${TOOLSET} --cxx=${CXX} | ||
./b2 -v | ||
cd ../.. | ||
displayName: Build | ||
- bash: | | ||
set -e | ||
CXX_PATH=`which ${CXX}` | ||
cd test | ||
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam | ||
python test_all.py ${TEST_TOOLSET} | ||
cd .. | ||
displayName: Test | ||
- bash: | | ||
set -e | ||
CXX_PATH=`which ${CXX}` | ||
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam | ||
./src/engine/b2 b2 warnings-as-errors=on variant=debug,release address-model=32,64 toolset=${TEST_TOOLSET} | ||
displayName: "No Warnings" | ||
- bash: | | ||
set -e | ||
CXX_PATH=`which ${CXX}` | ||
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam | ||
./bootstrap.sh ${TOOLSET} | ||
./b2 --prefix=$HOME/temp/.b2 install ${TEST_TOOLSET} | ||
rm ./b2 | ||
export PATH=$HOME/temp/.b2/bin:$PATH | ||
cd $HOME | ||
touch build.jam | ||
b2 -v | ||
b2 -n --debug-configuration | ||
displayName: Bootstrap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
steps: | ||
- bash: | | ||
set -e | ||
uname -a | ||
sudo xcode-select -switch ${XCODE_APP} | ||
which clang++ | ||
displayName: Install | ||
- bash: | | ||
set -e | ||
cd src/engine | ||
./build.sh ${TOOLSET} --cxx=${CXX} | ||
./b2 -v | ||
cd ../.. | ||
displayName: Build | ||
- bash: | | ||
set -e | ||
CXX_PATH=`which ${CXX}` | ||
cd test | ||
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam | ||
python test_all.py ${TEST_TOOLSET} | ||
cd .. | ||
displayName: Test | ||
- bash: | | ||
set -e | ||
CXX_PATH=`which ${CXX}` | ||
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam | ||
./src/engine/b2 b2 warnings-as-errors=on variant=debug,release address-model=32,64 toolset=${TEST_TOOLSET} | ||
displayName: "No Warnings" | ||
- bash: | | ||
set -e | ||
CXX_PATH=`which ${CXX}` | ||
echo "using ${TEST_TOOLSET} : : ${CXX_PATH} ;" > ${HOME}/user-config.jam | ||
./bootstrap.sh ${TOOLSET} | ||
./b2 --prefix=$HOME/temp/.b2 install ${TEST_TOOLSET} | ||
rm ./b2 | ||
export PATH=$HOME/temp/.b2/bin:$PATH | ||
cd $HOME | ||
touch build.jam | ||
b2 -v | ||
b2 -n --debug-configuration | ||
displayName: Bootstrap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
steps: | ||
- powershell: | | ||
cd src/engine | ||
$env:path += ';' + $env:CXX_PATH | ||
cmd /c build.bat $env:TOOLSET | ||
./b2.exe -v | ||
cd ../.. | ||
displayName: Build | ||
- powershell: | | ||
$env:HOME = $env:HOMEDRIVE + $env:HOMEPATH | ||
cd test | ||
echo "using" $env:TEST_TOOLSET ":" ":" $env:CXX ";" > ${env:HOME}/user-config.jam | ||
python test_all.py $env:TEST_TOOLSET | ||
cd .. | ||
displayName: Test | ||
- powershell: | | ||
$env:HOME = $env:HOMEDRIVE + $env:HOMEPATH | ||
$env:path += ';' + $env:CXX_PATH | ||
echo "using" $env:TEST_TOOLSET ":" ":" $env:CXX ";" > ${env:HOME}/user-config.jam | ||
./src/engine/b2.exe --debug-configuration b2 warnings-as-errors=on variant=debug,release toolset=$env:TEST_TOOLSET | ||
displayName: "No Warnings" | ||
- powershell: | | ||
$env:HOME = $env:HOMEDRIVE + $env:HOMEPATH | ||
$env:path += ';' + $env:CXX_PATH | ||
echo "using" $env:TEST_TOOLSET ":" ":" $env:CXX ";" > ${env:HOME}/user-config.jam | ||
./bootstrap.bat $env:TOOLSET | ||
./b2.exe --debug-configuration --prefix=${env:HOME}/temp/.b2 install toolset=$env:TEST_TOOLSET | ||
Remove-Item ./b2.exe | ||
$env:path += $env:HOME + '/temp/.b2/bin' + ';' + $env:PATH | ||
cd $env:HOME | ||
echo $null >> build.jam | ||
b2 -v | ||
b2 -n --debug-configuration | ||
displayName: Bootstrap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/sh | ||
|
||
# Usage: | ||
# LLVM_OS: LLVM OS release to obtain clang binaries. Only needed for clang install. | ||
# LLVM_VER: The LLVM toolset version to point the repo at. | ||
# PACKAGES: Compiler packages to install. | ||
|
||
set -e | ||
echo ">>>>>" | ||
echo ">>>>> APT: REPO.." | ||
echo ">>>>>" | ||
sudo -E apt-add-repository -y "ppa:ubuntu-toolchain-r/test" | ||
if test -n "${LLVM_OS}" ; then | ||
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | ||
sudo -E apt-add-repository "deb http://apt.llvm.org/${LLVM_OS}/ llvm-toolchain-${LLVM_OS}-${LLVM_VER} main" | ||
fi | ||
echo ">>>>>" | ||
echo ">>>>> APT: UPDATE.." | ||
echo ">>>>>" | ||
sudo -E apt-get -o Acquire::Retries=3 update | ||
echo ">>>>>" | ||
echo ">>>>> APT: INSTALL ${PACKAGES}.." | ||
echo ">>>>>" | ||
sudo -E apt-get -o Acquire::Retries=3 -yq --no-install-suggests --no-install-recommends install ${PACKAGES} | ||
|
||
# Use, modification, and distribution are | ||
# subject to the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE.txt) | ||
# | ||
# Copyright Rene Rivera 2020. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Use, modification, and distribution are | ||
# subject to the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE.txt) | ||
# | ||
# Copyright René Ferdinand Rivera Morell 2020. | ||
|
||
freebsd_task: | ||
# All the GCC's and Clang's currently supported by FreeBSD ports. | ||
matrix: | ||
- { name: 'FreeBSD, GCC 11', env: { TOOLSET: gcc, TEST_TOOLSET: gcc, CXX: 'g++11', PACKAGE: 'gcc11-devel' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, GCC 10', env: { TOOLSET: gcc, TEST_TOOLSET: gcc, CXX: 'g++10', PACKAGE: 'gcc10-devel' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, GCC 9', env: { TOOLSET: gcc, TEST_TOOLSET: gcc, CXX: 'g++9', PACKAGE: 'gcc9-devel' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, GCC 8', env: { TOOLSET: gcc, TEST_TOOLSET: gcc, CXX: 'g++8', PACKAGE: 'gcc8-devel' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, GCC 7', env: { TOOLSET: gcc, TEST_TOOLSET: gcc, CXX: 'g++7', PACKAGE: 'gcc7' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, Clang 10', env: { TOOLSET: clang, TEST_TOOLSET: clang, CXX: 'clang++10', PACKAGE: 'llvm10' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, Clang 9', env: { TOOLSET: clang, TEST_TOOLSET: clang, CXX: 'clang++90', PACKAGE: 'llvm90' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, Clang 8', env: { TOOLSET: clang, TEST_TOOLSET: clang, CXX: 'clang++80', PACKAGE: 'llvm80' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, Clang 7', env: { TOOLSET: clang, TEST_TOOLSET: clang, CXX: 'clang++70', PACKAGE: 'llvm70' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
- { name: 'FreeBSD, Clang 6', env: { TOOLSET: clang, TEST_TOOLSET: clang, CXX: 'clang++60', PACKAGE: 'llvm60' }, freebsd_instance: { image_family: 'freebsd-13-0-snap' } } | ||
# To install with ports we need to initialize the package manager. To avoid | ||
# confirmation prompts we need to set an env var. | ||
install_script: [ | ||
"uname -a", | ||
"env ASSUME_ALWAYS_YES=YES pkg bootstrap", | ||
"env ASSUME_ALWAYS_YES=YES pkg install ${PACKAGE}" | ||
] | ||
# Build the engine. | ||
build_script: [ | ||
"set -e", | ||
"cd src/engine", | ||
"set PATH=${PATH};${CXX_PATH}", | ||
"./build.sh ${TOOLSET}", | ||
"./b2 -v", | ||
"cd ../.." | ||
] | ||
# Run the core tests. | ||
test_script: [ | ||
"set -e", | ||
"CXX_PATH=`which ${CXX}`", | ||
"cd test", | ||
"echo \"using ${TEST_TOOLSET} : : ${CXX_PATH} ;\" > ${HOME}/user-config.jam", | ||
"python2 test_all.py ${TEST_TOOLSET}", | ||
"cd ..", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.