forked from appsody/stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (52 loc) · 1.72 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
language: generic
go:
- 1.12.x
services:
- docker
jobs:
include:
- name: Build Linux amd64
os: linux
arch: amd64
dist: xenial
# installation instructions for Buildah taken from https://github.com/containers/buildah/blob/master/install.md
before_script:
- sudo apt-get update -qq
- sudo apt-get install -qq -y software-properties-common
- sudo add-apt-repository -y ppa:projectatomic/ppa
- sudo apt-get update -qq
- sudo apt-get -qq -y install buildah
- id
- buildah version
script:
- buildah bud -f ./image/Dockerfile ./image
- name: Build Linux P
os: linux
arch: ppc64le
dist: xenial
# installation instructions for Buildah taken from https://github.com/containers/buildah/blob/master/install.md
before_script:
- sudo apt-get update -qq
- sudo apt-get install -qq -y software-properties-common
- sudo add-apt-repository -y ppa:projectatomic/ppa
- sudo apt-get update -qq
- sudo apt-get -qq -y install buildah
- id
- buildah version
script:
- buildah bud -f ./image/Dockerfile ./image
- name: Build Linux Z
os: linux
arch: s390x
dist: xenial
# installation instructions for Buildah taken from https://github.com/containers/buildah/blob/master/install.md
before_script:
- sudo apt-get update -qq
- sudo apt-get install -qq -y software-properties-common
- sudo add-apt-repository -y ppa:projectatomic/ppa
- sudo apt-get update -qq
- sudo apt-get -qq -y install buildah
- id
- buildah version
script:
- buildah bud -f ./image/Dockerfile ./image