Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add EL10 runner and signing key #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .github/workflows/scripts/qemu-2-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ case "$OS" in
# dns sometimes fails with that url :/
echo "89.187.191.12 geo.mirror.pkgbuild.com" | sudo tee /etc/hosts > /dev/null
;;
centos-stream10)
OSNAME="CentOS Stream 10"
# TODO: https://github.com/openzfs/zfs/issues/16903 Overwrite OSv to stream9 for virt-install until it's added to osinfo
OSv="centos-stream9"
URL="https://cloud.centos.org/centos/10-stream/x86_64/images/CentOS-Stream-GenericCloud-10-latest.x86_64.qcow2"
;;
centos-stream9)
OSNAME="CentOS Stream 9"
URL="https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zfs-qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["almalinux9", "fedora40", "fedora41"]
os: ["almalinux9", "centos-stream10", "fedora40", "fedora41"]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion zfs-release/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### How to build zfs-release RPMs:
```
sudo yum -y install rpm-build
sudo dnf install -y rpm-build
mkdir -p ~/rpmbuild/{BUILDROOT,SPECS,RPMS,SRPMS,SOURCES,BUILD}
cp RPM-GPG-KEY-openzfs* *.repo ~/rpmbuild/SOURCES
cp zfs-release.spec ~/rpmbuild/SPECS/
Expand Down
4 changes: 4 additions & 0 deletions zfs-release/zfs-release.spec
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ ln -s RPM-GPG-KEY-openzfs-2013 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg/RPM-GPG-KEY-openzfs-el-8
ln -s RPM-GPG-KEY-openzfs-2022 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg/RPM-GPG-KEY-openzfs-el-9
ln -s RPM-GPG-KEY-openzfs-2022 \
$RPM_BUILD_ROOT%{_sysconfdir}/pki/rpm-gpg/RPM-GPG-KEY-openzfs-el-10
%endif
%if 0%{?fedora}
ln -s RPM-GPG-KEY-openzfs-2022 \
Expand Down Expand Up @@ -98,6 +100,8 @@ rm -rf $RPM_BUILD_ROOT
%post

%changelog
* Thu Dec 26 2024 James Reilly <[email protected]> - 2-7
- Add signing key for EL10
* Wed Oct 16 2024 Ralf Ertzinger <[email protected]> - 2-6
- Add signing key for Fedora 41, drop link for Fedora 37
* Thu Mar 28 2024 Ralf Ertzinger <[email protected]> - 2-5
Expand Down