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

packit: Don't attempt to build on f39 #400

Merged
merged 2 commits into from
Sep 23, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.21.x", "1.22.x"]
go-version: ["1.22.x", "1.23.x"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -32,7 +32,7 @@ jobs:
mv bin/gvproxy.exe bin/gvproxy-windowsgui.exe

- uses: actions/upload-artifact@v4
if: matrix.go-version == '1.21.x'
if: matrix.go-version == '1.22.x'
with:
name: gvisor-tap-vsock-binaries
path: bin/*
Expand Down
20 changes: 15 additions & 5 deletions .packit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ jobs:
packages: [gvisor-tap-vsock-fedora]
enable_net: true
targets:
- fedora-all-aarch64
- fedora-all-x86_64
- fedora-development-x86_64
- fedora-development-aarch64
- fedora-latest-stable-x86_64
- fedora-latest-stable-aarch64
- fedora-40-x86_64
- fedora-40-aarch64
- fedora-eln-aarch64
- fedora-eln-x86_64

Expand Down Expand Up @@ -54,7 +58,9 @@ jobs:
packages: [gvisor-tap-vsock-fedora]
update_release: false
dist_git_branches:
- fedora-all
- fedora-development
- fedora-latest-stable
- fedora-40

- job: propose_downstream
trigger: release
Expand All @@ -67,10 +73,14 @@ jobs:
trigger: commit
packages: [gvisor-tap-vsock-fedora]
dist_git_branches:
- fedora-all
- fedora-development
- fedora-latest-stable
- fedora-40

- job: bodhi_update
trigger: commit
packages: [gvisor-tap-vsock-fedora]
dist_git_branches:
- fedora-branched # rawhide updates are created automatically
- fedora-latest # rawhide updates are created automatically
- fedora-latest-stable
- fedora-40
Loading