File: cloudbuild.yaml

package info (click to toggle)
php-memcache 8.0%2B4.0.5.2%2B3.0.9~20170802.e702b5f9%2B-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,300 kB
  • sloc: ansic: 17,993; xml: 2,367; php: 1,073; pascal: 53; sh: 45; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,591 bytes parent folder | download | duplicates (2)
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
steps:
- name: 'gcr.io/kaniko-project/executor:latest'
  args: [ 'build', '--build-arg', 'PHP_IMAGE=php:7.0-stretch', '--destination=gcr.io/$PROJECT_ID/build-7.0', '--cache=true', '--cache-ttl=6h', '.' ]
  waitFor: ['-']
  id: 'build-7.0'
- name: 'gcr.io/kaniko-project/executor:latest'
  args: [ 'build', '--build-arg', 'PHP_IMAGE=php:7.1-stretch', '--destination=gcr.io/$PROJECT_ID/build-7.1', '--cache=true', '--cache-ttl=6h', '.' ]
  waitFor: ['-']
  id: 'build-7.1'
- name: 'gcr.io/kaniko-project/executor:latest'
  args: [ 'build', '--build-arg', 'PHP_IMAGE=php:7.2-stretch', '--destination=gcr.io/$PROJECT_ID/build-7.2', '--cache=true', '--cache-ttl=6h', '.' ]
  waitFor: ['-']
  id: 'build-7.2'
- name: 'gcr.io/kaniko-project/executor:latest'
  args: [ 'build', '--build-arg', 'PHP_IMAGE=php:7.3-stretch', '--destination=gcr.io/$PROJECT_ID/build-7.3', '--cache=true', '--cache-ttl=6h', '.' ]
  waitFor: ['-']
  id: 'build-7.3'

- name: 'gcr.io/cloud-builders/docker'
  args: ['run', 'gcr.io/$PROJECT_ID/build-7.0']
  waitFor: ['build-7.0']
  id: 'run-7.0'
- name: 'gcr.io/cloud-builders/docker'
  args: ['run', 'gcr.io/$PROJECT_ID/build-7.1']
  waitFor: ['build-7.1']
  id: 'run-7.1'
- name: 'gcr.io/cloud-builders/docker'
  args: ['run', 'gcr.io/$PROJECT_ID/build-7.2']
  waitFor: ['build-7.2']
  id: 'run-7.2'
- name: 'gcr.io/cloud-builders/docker'
  args: ['run', 'gcr.io/$PROJECT_ID/build-7.3']
  waitFor: ['build-7.3']
  id: 'run-7.3'
images: [
 'gcr.io/$PROJECT_ID/build-7.0',
 'gcr.io/$PROJECT_ID/build-7.1',
 'gcr.io/$PROJECT_ID/build-7.2',
 'gcr.io/$PROJECT_ID/build-7.3'
]