|
5 | 5 | tags: |
6 | 6 | - "ccf-[567].*" |
7 | 7 | workflow_dispatch: |
| 8 | + pull_request: |
8 | 9 |
|
9 | 10 | permissions: read-all |
10 | 11 |
|
|
38 | 39 | name: sbom |
39 | 40 | path: _manifest/spdx_2.2/* |
40 | 41 |
|
41 | | - release_notes: |
42 | | - name: Release Notes |
43 | | - runs-on: ubuntu-latest |
44 | | - steps: |
45 | | - - uses: actions/checkout@v6 |
46 | | - with: |
47 | | - fetch-depth: 1 |
48 | | - - name: "Check Release Notes" |
49 | | - run: | |
50 | | - set -ex |
51 | | - scripts/extract-release-notes.py --target-git-version |
52 | | - shell: bash |
53 | | - - name: "Produce Release Notes" |
54 | | - run: | |
55 | | - set -ex |
56 | | - set -o pipefail |
57 | | - ./scripts/extract-release-notes.py --target-git-version --describe-path-changes "./samples/constitution" | tee rel-notes.md |
58 | | - - name: "Upload Release Notes" |
59 | | - uses: actions/upload-artifact@v7 |
60 | | - with: |
61 | | - name: relnotes |
62 | | - path: rel-notes.md |
63 | | - |
64 | 42 | image_digest: |
65 | 43 | name: Snapshot Build Image Digest and SOURCE_DATE_EPOCH |
66 | 44 | runs-on: |
|
89 | 67 |
|
90 | 68 | build_release: |
91 | 69 | name: Build Release |
92 | | - needs: [release_notes, image_digest] |
| 70 | + needs: [image_digest] |
93 | 71 | runs-on: |
94 | 72 | [ |
95 | 73 | self-hosted, |
@@ -148,10 +126,10 @@ jobs: |
148 | 126 | mkdir -p /github/home/.cache |
149 | 127 | # Unit tests |
150 | 128 | ./tests.sh --output-on-failure -L unit -j$(nproc --all) |
151 | | - # Suite tests |
152 | | - ./tests.sh --timeout 600 --output-on-failure -L "suite" |
153 | | - # Most tests |
154 | | - ./tests.sh --timeout 360 --output-on-failure -LE "suite|benchmark|unit" |
| 129 | + # # Suite tests |
| 130 | + # ./tests.sh --timeout 600 --output-on-failure -L "suite" |
| 131 | + # # Most tests |
| 132 | + # ./tests.sh --timeout 360 --output-on-failure -LE "suite|benchmark|unit" |
155 | 133 | shell: bash |
156 | 134 |
|
157 | 135 | - name: "Upload logs" |
@@ -473,7 +451,7 @@ jobs: |
473 | 451 | set -ex |
474 | 452 | CCF_VERSION=${{ github.ref_name }} |
475 | 453 | CCF_VERSION=${CCF_VERSION#ccf-} |
476 | | - gh release create --title $CCF_VERSION --draft --notes-file rel-notes.md ${{ github.ref_name }} pkg/* wheel/*.whl tstgz/*.tgz sbom/* tls_report.html compatibility_report.json repro/* ./reproduce/start_container_and_reproduce_rpm.sh |
| 454 | + # gh release create --title $CCF_VERSION --draft --notes-file rel-notes.md ${{ github.ref_name }} pkg/* wheel/*.whl tstgz/*.tgz sbom/* tls_report.html compatibility_report.json repro/* ./reproduce/start_container_and_reproduce_rpm.sh |
477 | 455 | shell: bash |
478 | 456 | env: |
479 | 457 | GH_TOKEN: ${{ github.token }} |
0 commit comments