Lines Matching +full:cancel +full:- +full:in +full:- +full:progress

5 #  Redistribution and use in source and binary forms, with or without
9 # 2. Redistributions in binary form must reproduce the above copyright
10 # notice, this list of conditions and the following disclaimer in the
19 # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 branches-ignore:
34 - 'dependabot/**'
37 - 'main'
40 …group: ${{ github.workflow }}-${{ github.event.pull_request.number || (github.repository == 'opent…
41 cancel-in-progress: true
43 permissions: # added using https://github.com/step-security/secure-workflows
49 name: buildx-${{ matrix.docker_name }}
50 runs-on: ubuntu-24.04
52 fail-fast: false
55 - docker_name: environment
57 - name: Harden Runner
58 uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
60 egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
62 - name: Free Disk Space (Ubuntu)
63 uses: jlumbroso/free-disk-space@main
65 - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
69 - name: Prepare
77 TAGS="--tag ${DOCKER_IMAGE}:${VERSION}"
81 echo "buildx_args=--platform ${DOCKER_PLATFORMS} \
82 --build-arg OT_GIT_REF=${{ github.sha }} \
83 --build-arg VERSION=${VERSION} \
84 --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
85 --build-arg VCS_REF=${GITHUB_SHA::8} \
86 ${TAGS} --file ${DOCKER_FILE} ." >> $GITHUB_OUTPUT
88 - name: Set up Docker Buildx
89 uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
91 - name: Docker Buildx (build)
93 … docker buildx build --output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args }}
95 - name: Login to DockerHub
97 uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
102 - name: Docker Buildx (push)
105 docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }}
107 - name: Inspect Image