Skip to content

Commit

Permalink
ci: fix typo in building boringcrypto images (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfratto authored May 2, 2024
1 parent 08f3c59 commit f8feb6f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .drone/drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ volumes:
name: docker
---
kind: pipeline
name: Publish Linux alloy-boringcrypto-devel container
name: Publish Linux alloy-devel-boringcrypto container
platform:
arch: amd64
os: linux
Expand All @@ -414,10 +414,10 @@ steps:
- mkdir -p $HOME/.docker
- printenv GCR_CREDS > $HOME/.docker/config.json
- docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD
- docker buildx create --name multiarch-alloy-alloy-boringcrypto-devel-${DRONE_COMMIT_SHA}
- docker buildx create --name multiarch-alloy-alloy-devel-boringcrypto-${DRONE_COMMIT_SHA}
--driver docker-container --use
- ./tools/ci/docker-containers alloy-boringcrypto-devel
- docker buildx rm multiarch-alloy-alloy-boringcrypto-devel-${DRONE_COMMIT_SHA}
- ./tools/ci/docker-containers alloy-devel-boringcrypto
- docker buildx rm multiarch-alloy-alloy-devel-boringcrypto-${DRONE_COMMIT_SHA}
environment:
DOCKER_LOGIN:
from_secret: docker_login
Expand Down Expand Up @@ -474,7 +474,7 @@ volumes:
name: docker
---
kind: pipeline
name: Publish Windows alloy-cngcrypto-devel container
name: Publish Windows alloy-devel-cngcrypto container
platform:
arch: amd64
os: windows
Expand All @@ -485,7 +485,7 @@ steps:
- '& "C:/Program Files/git/bin/bash.exe" -c ''printenv GCR_CREDS > $HOME/.docker/config.json'''
- '& "C:/Program Files/git/bin/bash.exe" -c ''docker login -u $DOCKER_LOGIN -p $DOCKER_PASSWORD'''
- '& "C:/Program Files/git/bin/bash.exe" -c ''./tools/ci/docker-containers-windows
alloy-cngcrypto-devel'''
alloy-devel-cngcrypto'''
environment:
DOCKER_LOGIN:
from_secret: docker_login
Expand Down Expand Up @@ -663,7 +663,7 @@ volumes:
---
depends_on:
- Publish Linux alloy-devel container
- Publish Linux alloy-boringcrypto-devel container
- Publish Linux alloy-devel-boringcrypto container
image_pull_secrets:
- dockerconfigjson
kind: pipeline
Expand Down Expand Up @@ -870,6 +870,6 @@ kind: secret
name: updater_private_key
---
kind: signature
hmac: 883a9a5afd22cd78dd7b0cbe53b2523ebc4afe148272c9d0df2754d036d17319
hmac: 8470d1cd1b7ab512b3adff1fc61af6576e427d81225f7b83ae228a3dad326aa9

...
4 changes: 2 additions & 2 deletions .drone/pipelines/publish.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ local job_names = function(jobs) std.map(function(job) job.name, jobs);

local linux_containers = [
{ devel: 'alloy-devel', release: 'alloy' },
{ devel: 'alloy-boringcrypto-devel', release: 'alloy-boringcrypto' },
{ devel: 'alloy-devel-boringcrypto', release: 'alloy-boringcrypto' },
];
local windows_containers = [
{ devel: 'alloy-devel', release: 'alloy' },
{ devel: 'alloy-cngcrypto-devel', release: 'alloy-cngcrypto' },
{ devel: 'alloy-devel-cngcrypto', release: 'alloy-cngcrypto' },
];

local linux_containers_dev_jobs = std.map(function(container) (
Expand Down

0 comments on commit f8feb6f

Please sign in to comment.