blob: d67d819491207d8d8bb8c20b3e960af784cfb865 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
set -e
sudo apt-get update -qq
sudo apt-get install -qq python3-pip
./travis/before_install.sh
sudo apt-get install wget
sudo apt-get install binutils-mingw-w64-x86-64
sudo apt-get install gcc-mingw-w64-x86-64
sudo apt-get install g++-mingw-w64-x86-64
sudo apt-get install g++-mingw-w64
sudo apt-get install mingw-w64-tools
sudo apt-get install -y wine1.4-amd64
sudo apt-get install sqlite3
|