Skip to content

Commit

Permalink
Split Docker build cron job into two (#600)
Browse files Browse the repository at this point in the history
* Fix version

* Split docker cron job.

* Auto update version

* Triggers.

* Revert triggers.

* Update changelog.

* 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 2716864 commit 8add857
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

### Improvements

* Split Docker build cron job into two jobs: master and latest. This is mainly for reporting in the `plugin-test-matrix` repo.
[(#600)](https://github.com/PennyLaneAI/pennylane-lightning/pull/600)

* The `BlockEncode` operation from PennyLane is now supported on all Lightning devices.
[(#599)](https://github.com/PennyLaneAI/pennylane-lightning/pull/599)

Expand Down
11 changes: 2 additions & 9 deletions .github/workflows/compat-docker-latest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docker build tests
name: Compat Check Docker - Lightning@latest

on:
schedule:
Expand All @@ -10,13 +10,6 @@ jobs:
name: Docker latest - Linux::x86_64
uses: ./.github/workflows/docker_linux_x86_64.yml
with:
lightning-version: 0.34.0
push-to-dockerhub: false
secrets: inherit # pass all secrets
docker_linux_x86_64_develop:
name: Docker develop - Linux::x86_64
uses: ./.github/workflows/docker_linux_x86_64.yml
with:
lightning-version: master
lightning-version: v0.34.0
push-to-dockerhub: false
secrets: inherit # pass all secrets
15 changes: 15 additions & 0 deletions .github/workflows/compat-docker-master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Compat Check Docker - Lightning@master

on:
schedule:
- cron: "0 4 * * 1-5" # Run daily at 4am Mon-Fri
workflow_dispatch:

jobs:
docker_linux_x86_64_develop:
name: Docker develop - Linux::x86_64
uses: ./.github/workflows/docker_linux_x86_64.yml
with:
lightning-version: master
push-to-dockerhub: false
secrets: inherit # pass all secrets
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-dev7"
__version__ = "0.35.0-dev8"

0 comments on commit 8add857

Please sign in to comment.