Skip to content

Commit 3d84dce

Browse files
committed
Use Tmux 2.5 in tests
1 parent 7e5e760 commit 3d84dce

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Vagrantfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
77
ubuntu.vm.provision 'shell', path: 'vagrant_ubuntu_provisioning.sh'
88
end
99

10-
config.vm.define :ubuntu_two_four do |ubuntu|
10+
config.vm.define :ubuntu_two_five do |ubuntu|
1111
ubuntu.vm.box = 'hashicorp/precise32'
12-
ubuntu.vm.provision 'shell', path: 'vagrant_ubuntu_provisioning_two_four.sh'
12+
ubuntu.vm.provision 'shell', path: 'vagrant_ubuntu_provisioning_two_five.sh'
1313
end
1414

1515
config.vm.define :centos do |centos|

run-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ run_tests_on_vm() {
5959
}
6060

6161
main() {
62-
run_tests_on_vm "ubuntu_two_four"
62+
run_tests_on_vm "ubuntu_two_five"
6363
run_tests_on_vm "ubuntu"
6464

6565
exit_message "$EXIT_VALUE"

vagrant_ubuntu_provisioning_two_four.sh renamed to vagrant_ubuntu_provisioning_two_five.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ sudo apt-get install -y make
1111
sudo apt-get install -y git-core expect vim gawk
1212
sudo apt-get install -y python-software-properties software-properties-common
1313

14-
# install Tmux 2.4
15-
VERSION=2.4
14+
# install Tmux 2.5
15+
VERSION=2.5
1616
sudo apt-get -y remove tmux
1717
sudo apt-get -y install wget tar libevent-dev libncurses-dev
1818
wget https://github.com/tmux/tmux/releases/download/${VERSION}/tmux-${VERSION}.tar.gz

0 commit comments

Comments
 (0)