Drop tboot #53
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test build and package QubesOS RPMs | |
on: | |
pull_request: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-and-package: | |
runs-on: ubuntu-latest | |
name: Compile and package as QubesOS RPM | |
permissions: | |
# for publishing releases | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 100 # need history for `git format-patch` | |
- uses: actions/checkout@v3 | |
with: | |
repository: TrenchBoot/.github | |
path: shared | |
ref: ${{ github.job_workflow_sha }} | |
- name: Cache Docker image and dom0 stuff | |
uses: actions/cache@v3 | |
id: docker-cache | |
with: | |
path: | | |
/tmp/qubes-fedora-builder.tar | |
/tmp/cache/dom0.tar | |
key: | | |
${{ hashFiles('shared/qubes-builder-docker/*') }}-docker-container | |
- name: Load Docker image | |
if: steps.docker-cache.outputs.cache-hit == 'true' | |
run: | | |
docker load --input /tmp/qubes-fedora-builder.tar | |
- name: Build Docker image (optional) | |
if: steps.docker-cache.outputs.cache-hit != 'true' | |
uses: docker/build-push-action@v4 | |
with: | |
tags: qubes-fedora-builder:latest | |
context: shared/qubes-builder-docker | |
- name: Export Docker image (optional) | |
if: steps.docker-cache.outputs.cache-hit != 'true' | |
run: | | |
docker save --output /tmp/qubes-fedora-builder.tar \ | |
qubes-fedora-builder:latest | |
- name: Prepare dom0 cache storage (optional) | |
if: steps.docker-cache.outputs.cache-hit != 'true' | |
run: | | |
mkdir --mode=777 /tmp/cache | |
- name: Apply patches | |
run: | | |
docker run --privileged \ | |
-v "$GITHUB_WORKSPACE:$GITHUB_WORKSPACE" \ | |
-w "$GITHUB_WORKSPACE" \ | |
--entrypoint ./entry.sh \ | |
qubes-fedora-builder:latest | |
- name: Save built packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: qubesos.dom0.fc37-${{ inputs.qubes-component }}-${{ github.sha }} | |
path: '*.rpm' | |
- name: Construct release's description | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/') | |
run: | | |
for artifact in *.rpm; do | |
echo "### $artifact" >> release-body.md | |
echo '```' >> release-body.md | |
echo "wget --quiet '${{ github.server_url }}/${{ github.repository }}/releases/download/${{ github.ref_name }}/$artifact'" >> release-body.md | |
echo '```' >> release-body.md | |
echo '```' >> release-body.md | |
echo "curl --remote-name '${{ github.server_url }}/${{ github.repository }}/releases/download/${{ github.ref_name }}/$artifact'" >> release-body.md | |
echo '```' >> release-body.md | |
done | |
- name: Create release for a new tag | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/') | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: '*.rpm' | |
artifactErrorsFailBuild: true | |
bodyFile: "release-body.md" |