We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee7ebf2 commit 2e28520Copy full SHA for 2e28520
1 file changed
.github/workflows/build-on-push.yml
@@ -12,13 +12,27 @@ permissions:
12
pull-requests: write # lava-test.yml
13
14
jobs:
15
- build-daily:
+ build:
16
+ strategy:
17
+ fail-fast: false
18
+ matrix:
19
+ include:
20
+ - distro: debian
21
+ suite: trixie
22
23
+ suite: forky
24
+ - distro: ubuntu
25
+ suite: noble
26
27
+ suite: resolute
28
+ with:
29
+ suite: ${{ matrix.suite }}
30
uses: ./.github/workflows/debos.yml
31
schema-check:
32
uses: ./.github/workflows/lava-schema-check.yml
33
test:
34
uses: ./.github/workflows/lava-test.yml
- needs: [build-daily, schema-check]
35
+ needs: [build, schema-check]
36
secrets: inherit
37
with:
- url: ${{ needs.build-daily.outputs.artifacts_url }}
38
+ url: ${{ needs.build.outputs.artifacts_url }}
0 commit comments