Skip to content

Commit ac0764a

Browse files
authored
Remove docker and fix YAML
I tried to figure out why builds are not running and somebody from https://travis-ci.community/c/product hinted that invalid YAML can bring those issues. I run it through linter and found that asterisk needs to be escaped or it will be treated as an alias, invalid alias in this case. https://yaml.org/YAML_for_ruby.html#simple_alias_example Also removed docker leftover from the previous commit.
1 parent 2f62b38 commit ac0764a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ addons:
44
apt:
55
packages:
66
- snapcraft
7-
services:
8-
- docker
97
python:
108
- '2.7'
119
- '3.3'
@@ -40,6 +38,6 @@ jobs:
4038
on:
4139
branch: master
4240
provider: snap
43-
snap: *.snap
41+
snap: "*.snap"
4442
channel: edge
4543
skip_cleanup: true

0 commit comments

Comments
 (0)