Skip to content

Commit

Permalink
Fix concurrency in docker workflow. (#604)
Browse files Browse the repository at this point in the history
* Fix concurrency in docker workflow.

* Revert triggers.

* Auto update version

* trigger ci

---------

Co-authored-by: Dev version update bot <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
vincentmr and github-actions[bot] authored Jan 29, 2024
1 parent 8add857 commit ebc4ed6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@

### Bug fixes

* Move concurrency group specifications from reusable Docker build workflow to the root workflows.
[(#604)](https://github.com/PennyLaneAI/pennylane-lightning/pull/604)

* Fix `lightning-kokkos-cuda` Docker build and add CI workflow to build images and push to Docker Hub.
[(#593)](https://github.com/PennyLaneAI/pennylane-lightning/pull/593)

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/compat-docker-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
- cron: "0 4 * * 1-5" # Run daily at 4am Mon-Fri
workflow_dispatch:

concurrency:
group: docker_linux_x86_64-latest
cancel-in-progress: true

jobs:
docker_linux_x86_64_latest:
name: Docker latest - Linux::x86_64
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/compat-docker-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
- cron: "0 4 * * 1-5" # Run daily at 4am Mon-Fri
workflow_dispatch:

concurrency:
group: docker_linux_x86_64-master
cancel-in-progress: true

jobs:
docker_linux_x86_64_develop:
name: Docker develop - Linux::x86_64
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/docker_linux_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ on:
required: true
description: Push to Docker Hub when done.

concurrency:
group: docker_linux_x86_64-${{ github.ref }}
cancel-in-progress: true

jobs:

docker:
Expand Down
2 changes: 1 addition & 1 deletion pennylane_lightning/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.35.0-dev8"
__version__ = "0.35.0-dev9"

0 comments on commit ebc4ed6

Please sign in to comment.