Skip to content
Merged
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
14 changes: 12 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,18 @@ jobs:
cat /tmp/install_prefix | xargs -i bash -c "PYTHON_PACKAGE_PATH=../python ./recovery_benchmark.sh {}"
shell: bash

- name: "Test Building a Sample Against Installed CCF"
- name: "Test Building `logging` Sample App Against Installed CCF"
run: |
set -ex
./tests/test_install_build.sh
shell: bash

- name: "Upload `logging` Sample App"
Comment thread
eddyashton marked this conversation as resolved.
uses: actions/upload-artifact@v7
with:
name: logging
path: build_against_install/logging

- name: "Upload .rpm Package"
uses: actions/upload-artifact@v7
with:
Expand Down Expand Up @@ -463,6 +469,10 @@ jobs:
with:
path: sbom
name: sbom
- name: Download Logging Sample App
uses: actions/download-artifact@v8
with:
name: logging
- name: Download Reproducibility Metadata
uses: actions/download-artifact@v8
with:
Expand All @@ -473,7 +483,7 @@ jobs:
set -ex
CCF_VERSION=${{ github.ref_name }}
CCF_VERSION=${CCF_VERSION#ccf-}
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
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/* logging ./reproduce/start_container_and_reproduce_rpm.sh
shell: bash
env:
GH_TOKEN: ${{ github.token }}