mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 16:49:55 +00:00
cbba81df03
# Conflicts: # .travis.yml # CI/before_install.linux.sh # CI/before_script.linux.sh # CMakeLists.txt # apps/openmw/CMakeLists.txt # apps/openmw/mwmechanics/mechanicsmanagerimp.cpp # apps/openmw/mwworld/containerstore.cpp # apps/openmw/mwworld/inventorystore.cpp
13 lines
400 B
Bash
Executable file
13 lines
400 B
Bash
Executable file
#!/bin/sh -ex
|
|
echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
|
|
|
|
# Set up compilers
|
|
if [ ! -z "${MATRIX_CC}" ]; then
|
|
eval "${MATRIX_CC}"
|
|
fi
|
|
|
|
cd ~/
|
|
git clone https://github.com/TES3MP/CrabNet
|
|
cd CrabNet
|
|
cmake . -DCRABNET_ENABLE_DLL=OFF -DCRABNET_ENABLE_SAMPLES=OFF -DCMAKE_BUILD_TYPE=Release
|
|
make -j3
|