Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split Docker build cron job into two #600

Merged
merged 7 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
Loading