Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ekilmer committed Jan 8, 2024
1 parent 732c336 commit 6fdc9ec
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/vcpkg_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,12 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
# Also remember to change the 'docker/build.sh' script
# NOTE: Setting the environment variable here isn't ideal because we
# can't use any matrix variables here, and in the future we will probably
# want to support building multiple Ubuntu versions
REGISTRY_IMAGE_ROOT: ""

jobs:
build:
runs-on: ubuntu-latest
env:
# This needs to be the same as in the `merge` job
# Also remember to change the 'docker/build.sh' script
REGISTRY_IMAGE: ghcr.io/lifting-bits/cxx-common/vcpkg-builder-ubuntu-${{ matrix.ubuntu_version }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -135,8 +129,8 @@ jobs:
- name: Create manifest list and push
working-directory: /tmp/digests
run: |
docker buildx imagetools create "$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")" \
"$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)"
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.REGISTRY_IMAGE }}@sha256:%s ' *)
- name: Inspect image
run: |
Expand Down

0 comments on commit 6fdc9ec

Please sign in to comment.