Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update packaged mono to 5.20.1.19 #16516

Merged
merged 2 commits into from May 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .travis.yml
Expand Up @@ -3,7 +3,7 @@

dist: xenial
language: csharp
mono: 5.10.0
mono: 5.20.1

cache:
directories:
Expand Down Expand Up @@ -32,11 +32,6 @@ env:
# call OpenRA to check for YAML errors
# Run the NUnit tests
script:
- wget http://mirrors.kernel.org/ubuntu/pool/universe/n/nsis/nsis-common_3.03-2_all.deb
- wget http://mirrors.kernel.org/ubuntu/pool/universe/n/nsis/nsis_3.03-2_amd64.deb
- sudo dpkg -i nsis-common_3.03-2_all.deb
- sudo dpkg -i nsis_3.03-2_amd64.deb
- makensis -VERSION
- travis_retry make all-dependencies
- make all
- make check
Expand Down Expand Up @@ -68,6 +63,11 @@ notifications:
skip_join: true

before_deploy:
- wget http://mirrors.kernel.org/ubuntu/pool/universe/n/nsis/nsis-common_3.03-2_all.deb
- wget http://mirrors.kernel.org/ubuntu/pool/universe/n/nsis/nsis_3.03-2_amd64.deb
- sudo dpkg -i nsis-common_3.03-2_all.deb
- sudo dpkg -i nsis_3.03-2_amd64.deb
- makensis -VERSION
- export PATH=$PATH:$HOME/usr/bin
- DOTVERSION=`echo ${TRAVIS_TAG} | sed "s/-/\\./g"`
- cd packaging
Expand Down
2 changes: 1 addition & 1 deletion packaging/linux/buildpackage.sh
Expand Up @@ -7,7 +7,7 @@ command -v python >/dev/null 2>&1 || { echo >&2 "Linux packaging requires python
command -v tar >/dev/null 2>&1 || { echo >&2 "Linux packaging requires tar."; exit 1; }
command -v curl >/dev/null 2>&1 || command -v wget > /dev/null 2>&1 || { echo >&2 "Linux packaging requires curl or wget."; exit 1; }

DEPENDENCIES_TAG="20190316"
DEPENDENCIES_TAG="20190506"

if [ $# -eq "0" ]; then
echo "Usage: $(basename "$0") version [outputdir]"
Expand Down
2 changes: 1 addition & 1 deletion packaging/osx/buildpackage.sh
Expand Up @@ -9,7 +9,7 @@ if [[ "$OSTYPE" != "darwin"* ]]; then
command -v genisoimage >/dev/null 2>&1 || { echo >&2 "macOS packaging requires genisoimage."; exit 1; }
fi

LAUNCHER_TAG="osx-launcher-20190317"
LAUNCHER_TAG="osx-launcher-20190506"

if [ $# -ne "2" ]; then
echo "Usage: $(basename "$0") tag outputdir"
Expand Down