Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions elixir/cloudbuild-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ timeout: 7200s # 2 hours
steps:

# Fetch cached plt files
- name: gcr.io/cloud-builders/gsutil
args: ['cp', '-r', 'gs://release-image-cache2/elixir-artifacts/elixir*', '/workspace/elixir/plt_builder/plts/']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'cp', '--recursive', 'gs://release-image-cache2/elixir-artifacts/elixir*', '/workspace/elixir/plt_builder/plts/']
id: load-plts
allowFailure: true
waitFor: ['-']
Expand All @@ -37,8 +37,8 @@ steps:
waitFor: ['elixir114-test']

# Push cached plt files
- name: gcr.io/cloud-builders/gsutil
args: ['cp', '-r', '/workspace/elixir/plt_builder/plts/elixir*', 'gs://release-image-cache2/elixir-artifacts/']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'cp', '--recursive', '/workspace/elixir/plt_builder/plts/elixir*', 'gs://release-image-cache2/elixir-artifacts/']
waitFor: [
'elixir114-extract-plts',
]
Expand Down
8 changes: 4 additions & 4 deletions elixir/cloudbuild-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ timeout: 7200s # 2 hours
steps:

# Fetch cached plt files
- name: gcr.io/cloud-builders/gsutil
args: ['cp', '-r', 'gs://$PROJECT_ID/elixir-artifacts/elixir*', '/workspace/elixir/plt_builder/plts/']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'cp', '--recursive', 'gs://$PROJECT_ID/elixir-artifacts/elixir*', '/workspace/elixir/plt_builder/plts/']
id: load-plts
waitFor: ['-']

Expand Down Expand Up @@ -176,8 +176,8 @@ steps:
waitFor: ['elixir116-test']

# Push cached plt files
- name: gcr.io/cloud-builders/gsutil
args: ['cp', '-r', '/workspace/elixir/plt_builder/plts/elixir*', 'gs://$PROJECT_ID/elixir-artifacts/']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'cp', '--recursive', '/workspace/elixir/plt_builder/plts/elixir*', 'gs://$PROJECT_ID/elixir-artifacts/']
waitFor: [
# 'elixir16-extract-plts',
# 'elixir17-extract-plts',
Expand Down
8 changes: 4 additions & 4 deletions elixir/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ timeout: 7200s # 2 hours
steps:

# Fetch cached plt files
- name: gcr.io/cloud-builders/gsutil
args: ['cp', '-r', 'gs://$PROJECT_ID/elixir-artifacts/elixir*', '/workspace/elixir/plt_builder/plts/']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'cp', '--recursive', 'gs://$PROJECT_ID/elixir-artifacts/elixir*', '/workspace/elixir/plt_builder/plts/']
id: load-plts
waitFor: ['-']

Expand Down Expand Up @@ -176,8 +176,8 @@ steps:
waitFor: ['elixir116-test']

# Push cached plt files
- name: gcr.io/cloud-builders/gsutil
args: ['cp', '-r', '/workspace/elixir/plt_builder/plts/elixir*', 'gs://$PROJECT_ID/elixir-artifacts/']
- name: gcr.io/cloud-builders/gcloud
args: ['storage', 'cp', '--recursive', '/workspace/elixir/plt_builder/plts/elixir*', 'gs://$PROJECT_ID/elixir-artifacts/']
waitFor: [
# 'elixir16-extract-plts',
# 'elixir17-extract-plts',
Expand Down