launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #29488
[Merge] ~jugmac00/lpcraft:reproduce-bug-1999591 into lpcraft:main
Jürgen Gmach has proposed merging ~jugmac00/lpcraft:reproduce-bug-1999591 into lpcraft:main.
Commit message:
reproducer for bug 1999591
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~jugmac00/lpcraft/+git/lpcraft/+merge/434636
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~jugmac00/lpcraft:reproduce-bug-1999591 into lpcraft:main.
diff --git a/.launchpad.yaml b/.launchpad.yaml
index d3ffd7e..f01094e 100644
--- a/.launchpad.yaml
+++ b/.launchpad.yaml
@@ -1,18 +1,35 @@
pipeline:
- - test
- - build
+- aa
+- bb
+- cc
+- dd
jobs:
- test:
+ aa:
+ series: jammy
+ architectures: amd64
+ run: |
+ echo "1111" | tee output.aa.txt
+ output:
+ paths: ["*.txt"]
+ bb:
+ series: jammy
+ architectures: amd64
+ run: |
+ echo "2222"
+ input:
+ job-name: aa
+ target-directory: ./
+ cc:
series: focal
architectures: amd64
- packages: [git]
- plugin: tox
- build:
+ run: |
+ echo "3333" | tee output.cc.txt
+ dd:
series: focal
architectures: amd64
- plugin: pyproject-build
- output:
- paths:
- - "dist/*.tar.gz"
- - "dist/*.whl"
+ run: |
+ echo "4444"
+ input:
+ job-name: cc
+ target-directory: ./
Follow ups