-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Workaround OpenSSL 1.1.1f issues (#348)
IB-6376 Signed-off-by: Raul Metsma <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 additions
and
33 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ matrix: | |
env: TARGET=ubuntu:18.04 | ||
sudo: false | ||
- os: linux | ||
env: TARGET=ubuntu:19.10 | ||
env: TARGET=ubuntu:20.04 | ||
sudo: false | ||
- os: linux | ||
env: TARGET=i386/ubuntu:16.04 | ||
|
@@ -29,7 +29,7 @@ matrix: | |
env: TARGET=androidx86_64 | ||
sudo: required | ||
dist: bionic | ||
osx_image: xcode11.3 | ||
osx_image: xcode11.4 | ||
services: | ||
- docker | ||
cache: ccache | ||
|
@@ -63,7 +63,9 @@ script: case ${TARGET} in | |
;; | ||
*) | ||
docker run -e BUILD_NUMBER=${BUILD_NUMBER} -e RUN_TESTS=${RUN_TESTS} -e COVERITY_SCAN_TOKEN=${COVERITY_SCAN_TOKEN} -e TRAVIS_BRANCH=${TRAVIS_BRANCH} -e TARGET=${TARGET} -v ${HOME}:${HOME} -t "${TARGET}" /bin/bash -c "cd $(pwd);"' | ||
set -e; | ||
apt-get update -qq; | ||
export DEBIAN_FRONTEND=noninteractive; | ||
apt-get install -y dh-make devscripts cdbs cmake vim-common xsdcxx libxml-security-c-dev zlib1g-dev doxygen swig openjdk-8-jdk-headless libboost-test-dev git curl wget ruby; | ||
export VERSION=$(grep project CMakeLists.txt | egrep -o "([0-9]{1,}\.)+[0-9]{1,}"); | ||
export VERSIONEX=${VERSION}.${BUILD_NUMBER}.$(lsb_release -rs) | ||
|
@@ -72,7 +74,7 @@ script: case ${TARGET} in | |
dh_make --createorig --addmissing --defaultless -y -p libdigidocpp_${VERSIONEX}; | ||
dch --distribution $(lsb_release -cs) -v ${VERSIONEX} "Release ${VERSIONEX}."; | ||
dpkg-buildpackage -rfakeroot -us -uc; | ||
if [ "${TARGET}" = "ubuntu:16.04" ]; then | ||
if [[ "${IMAGE}" = "ubuntu:16.04" && "${TRAVIS_BRANCH}" = "coverity_scan" ]]; then | ||
export COVERITY_SCAN_PROJECT_NAME="open-eid/libdigidocpp"; | ||
export COVERITY_SCAN_NOTIFICATION_EMAIL="[email protected]"; | ||
export COVERITY_SCAN_BRANCH_PATTERN=coverity_scan; | ||
|
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