Skip to content

Commit

Permalink
Set concurrency to 1 for publish artifacts (#1002)
Browse files Browse the repository at this point in the history
Temporary set concurrency to one while pushing artifacts to avoid
hitting a concurrency issue on luet-cosign

Signed-off-by: Itxaka <igarcia@suse.com>
  • Loading branch information
Itxaka authored Dec 21, 2021
1 parent ff377ed commit 5952eb3
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/build.yaml.gomplate
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@
{{{- end }}}
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-{{{ $flavor }}}
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
{{{ tmpl.Exec "prepare_build" }}}
{{{ tmpl.Exec "prepare_worker" }}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-blue-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-blue
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- run: |
sudo rm -rf build || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-blue-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-blue
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-green-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-green
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- run: |
sudo rm -rf build || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-green-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-green
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-orange-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-orange
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- run: |
sudo rm -rf build || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-master-orange-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-orange
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-releases-blue-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-blue
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- run: |
sudo rm -rf build || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-releases-blue-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-blue
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-releases-green-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-green
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- run: |
sudo rm -rf build || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-releases-green-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-green
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-releases-orange-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-orange
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- run: |
sudo rm -rf build || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-releases-orange-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
DOWNLOAD_ONLY: true
COSIGN_EXPERIMENTAL: 1 # use keyless signing
COSIGN_REPOSITORY: raccos/releases-orange
PUBLISH_ARGS: "--plugin luet-cosign"
PUBLISH_ARGS: "--concurrency 1 --plugin luet-cosign"
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down

0 comments on commit 5952eb3

Please sign in to comment.