We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aebbc13 commit 9f1ff97Copy full SHA for 9f1ff97
.travis.yml
@@ -15,6 +15,15 @@ matrix:
15
go: 1.14.x
16
- arch: s390x
17
go: 1.15.x
18
+ - arch: ppc64le
19
+ go: 1.12.x
20
21
+ go: 1.13.x
22
23
+ go: 1.14.x
24
25
+ go: 1.15.x
26
+
27
# Install g++-4.8 to support std=c++11 for github.com/google/certificate-transparency/go/merkletree
28
addons:
29
apt:
@@ -42,8 +51,8 @@ branches:
42
51
43
52
before_script:
44
53
- make bin/golint
45
- #Setup postgresql for s390x environment
46
- - if [[ $(uname -m) == 's390x' ]]; then
54
+ #Setup postgresql for s390x environment or Power Support environment
55
+ - if [[ $(uname -m) == 's390x' || $(uname -m) == 'ppc64le' ]]; then
47
56
sudo apt-get --purge remove postgresql-*;
48
57
sudo rm -Rf /etc/postgresql /var/lib/postgresql;
49
58
sudo apt-get update;
0 commit comments