Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Commit c6853ab

Browse files
committed
Upgrade Ubuntu xenial to 20160713
1 parent fa4b72e commit c6853ab

File tree

5 files changed

+19
-17
lines changed

5 files changed

+19
-17
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ install:
7878
script:
7979
- ./test/script_start
8080
- travis_retry ./test/script_scenario_make
81-
# - travis_retry ./test/script_scenario_compose_1_1
82-
# - travis_retry ./test/script_scenario_compose_N_N
81+
- travis_retry ./test/script_scenario_compose_1_1
82+
- travis_retry ./test/script_scenario_compose_N_N
8383
- ./test/script_end
8484

8585
# cleanup though doesn't seem to be necessary in Travis infra

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ For pull requests or local commits:
88
open ./images/grid_console.png #to verify the versions are correct
99
git checkout ./images/grid_console.png && open ./videos/chrome/*.mkv
1010
travis lint #if you changed .travis.yml
11-
git checkout -b tmp-2.53.1o #name your branch according to your changes
11+
git checkout -b tmp-2.53.1p #name your branch according to your changes
1212
#git add ... git commit ... git push ... open pull request
1313

1414
For repository owners only:
1515

1616
git commit -m "Start xterm with a random geometry to differentiate nodes"
1717
git tag -d latest #tag latest will be updated from TravisCI
18-
git tag 2.53.1o && git push origin tmp-2.53.1o && git push --tags
18+
git tag 2.53.1p && git push origin tmp-2.53.1p && git push --tags
1919

2020
-- Wait for Travis to pass OK
2121
-- Make sure changes got merged into master by elgalubot
2222

23-
git checkout master && git pull && git branch -d tmp-2.53.1o && git push origin --delete tmp-2.53.1o
23+
git checkout master && git pull && git branch -d tmp-2.53.1p && git push origin --delete tmp-2.53.1p
2424

2525
-- Re-add TBD_* section in CHANGELOG.md starting with TBD_DOCKER_TAG
2626
-- If Chrome version changed upload:
@@ -36,9 +36,9 @@ Keep certain bins if chrome version changed for example:
3636
## Retry
3737
Failed in Travis? retry
3838

39-
git tag -d 2.53.1o && git push origin :2.53.1o
39+
git tag -d 2.53.1p && git push origin :2.53.1p
4040
#git add ...
41-
git commit --amend && git tag 2.53.1o && git push --force origin tmp-2.53.1o && git push --tags
41+
git commit --amend && git tag 2.53.1p && git push --force origin tmp-2.53.1p && git push --tags
4242

4343
## Docker push from Travis CI
4444
Travis [steps](https://docs.travis-ci.com/user/docker/#Pushing-a-Docker-Image-to-a-Registry) involve `docker login` and docker credentials encryptions.

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -224,20 +224,20 @@ seeall: check_vncviewer
224224
$(MAKE) see browser=chrome node=1
225225
@sleep 0.3
226226
$(MAKE) see browser=firefox node=1
227-
@sleep 0.3
227+
@sleep 0.4
228228
$(MAKE) see browser=chrome node=2
229-
@sleep 0.3
229+
@sleep 0.5
230230
$(MAKE) see browser=firefox node=2
231231

232232
# Move them all. As of now only 4 are supported
233233
dock: check_wmctrl
234234
@sleep 0.5 #TODO Make active wait: http://stackoverflow.com/a/19441380/511069
235235
$(MAKE) move browser=chrome node=1
236-
@sleep 0.3 #TODO Make active wait
236+
@sleep 0.7 #TODO Make active wait
237237
$(MAKE) move browser=firefox node=1
238-
@sleep 0.5 #TODO Make active wait
238+
@sleep 0.9 #TODO Make active wait
239239
$(MAKE) move browser=chrome node=2
240-
@sleep 0.7 #TODO Make active wait
240+
@sleep 1.1 #TODO Make active wait
241241
$(MAKE) move browser=firefox node=2
242242

243243
# Run self tests

test/before_install_setup

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ fi
2323
docker-compose --version || (echo "FATAL: No docker compose installed" && exit 1)
2424

2525
# Git latest stable to avoid hang on `git merge travis-${TRAVIS_TAG}`
26-
sudo add-apt-repository -y ppa:git-core/ppa
27-
sudo apt-get -qyy update
28-
sudo apt-get -qyy install git
29-
git --version #=> 2.9.2
26+
# sudo add-apt-repository -y ppa:git-core/ppa
27+
# sudo apt-get -qyy update
28+
# sudo apt-get -qyy install git
29+
# git --version #=> 2.9.2
3030

3131
# Notes:
3232
# sudo -E or --preserve-env will preserve travis env vars like DOCKER_COMPOSE_VERSION

test/script_push

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ git_co_fetch_merge_stash() {
5151
git stash save || true
5252
git checkout -t github/master -b github/master
5353
echo "Will git merge into master"
54-
git merge travis-${TRAVIS_TAG}
54+
if ! timeout --foreground "30s" git merge travis-${TRAVIS_TAG}; then
55+
echo "WARN: Timed out on git merge!" 1>&2
56+
fi
5557
git stash pop || true
5658
}
5759

0 commit comments

Comments
 (0)