-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (39 loc) · 848 Bytes
/
.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
sudo: required
dist: bionic
language: generic
arch:
- s390x
os: linux
# services:
# - docker
# cache:
# directories:
# - docker_files
jobs:
include:
- stage: "Build Images in Parallel"
name: "Docker Save 01"
script: echo "fake image 01" | tee > fake_image_01
workspaces:
create:
name: ws01
paths:
- fake_image_01
- script: echo "fake image 02" | tee > fake_image_02
name: "Docker Save 02"
workspaces:
create:
name: ws02
paths:
- fake_image_02
- stage: "Docker Load All"
language: minimal
git:
clone: false
workspaces:
use:
- ws01
- ws02
script:
- find . -name 'fake_image_*'
- find . -name 'fake_image_*' -print0 | xargs -0 tail -n+1