Skip to content

Commit

Permalink
fix: remove Ubuntu 23.04 from CI
Browse files Browse the repository at this point in the history
and disable by default in Vagrant, as addon installation is broken at
the moment for reasons outside of our control.
  • Loading branch information
tomeon committed Mar 17, 2024
1 parent c559e7e commit e9d5e1d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- debian:11
- debian:12
- ubuntu:22.04
- ubuntu:23.04
# XXX addon installation is currently broken in Ubuntu 23.04 due to
# issues upstream of this role. Omit from the workflow for now.
#- ubuntu:23.04
container:
image: ${{ matrix.image }}
steps:
Expand Down
5 changes: 5 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ Vagrant.configure(2) do |config|

config.vm.define :ubuntu2304 do |ubuntu2304|
ubuntu2304.vm.box = 'generic/ubuntu2304'

# XXX addon installation is currently broken in Ubuntu 23.04 due to issues
# upstream of this role. Do not bring up this machine by default.
ubuntu2304.autostart = false
ubuntu2304.primary = false
end

config.vm.define :libreelec do |libreelec|
Expand Down

0 comments on commit e9d5e1d

Please sign in to comment.