minor travis update for mingw jobs

Use the right gpg key id for the mxe apt server and remove the
`--allow-unauthenticated`.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2019-03-12 07:41:01 -07:00
parent 1ebb8efdb6
commit 513b0559ce
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ EOF
if [ -z "$(apt-cache search '^mxe-source$')" ]; then
if [ ! -f "$mxe_apt_sources" ]; then
echo "deb https://pkg.mxe.cc/repos/apt $debian_rel main" | sudo -- sh -c "cat > $mxe_apt_sources"
check sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB
check sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C6BF758A33A3A276
else
error "$mxe_apt_sources exists but mxe packages are not found in apt, either delete it or fix it"
fi
@ -351,7 +351,7 @@ EOF
done
check sudo apt-get -qq -y update
# native wx-common needed for wxrc executable
check sudo apt-get -qy --allow-unauthenticated install build-essential cmake ccache wx-common "$@"
check sudo apt-get -qy install build-essential cmake ccache wx-common "$@"
fi
build_instructions