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

Upgrade to Ubuntu 22 LTS Jammy #2657

Draft
wants to merge 3 commits into
base: develop
Choose a base branch
from
Draft
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/vvv-provisioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
on-docker:
name: Ubuntu 20 Docker Provisioner
name: Ubuntu 22 Docker Provisioner
# The type of runner that the job will run on
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
10 changes: 5 additions & 5 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -457,25 +457,25 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

# The Parallels Provider uses a different naming scheme.
config.vm.provider :parallels do |_v, override|
override.vm.box = 'bento/ubuntu-20.04'
override.vm.box = 'bento/ubuntu-22.04'

# Vagrant currently runs under Rosetta on M1 devices. As a result,
# this seems to be the most reliable way to detect whether or not we're
# running under ARM64.
if Etc.uname[:version].include? 'ARM64'
override.vm.box = 'bento/ubuntu-20.04-arm64'
override.vm.box = 'bento/ubuntu-22.04-arm64'
end
end

# The VMware Desktop Provider uses a different naming scheme.
config.vm.provider :vmware_desktop do |v, override|
override.vm.box = 'bento/ubuntu-20.04'
override.vm.box = 'bento/ubuntu-22.04'
v.gui = false
end

# Hyper-V uses a different base box.
config.vm.provider :hyperv do |_v, override|
override.vm.box = 'bento/ubuntu-20.04'
override.vm.box = 'bento/ubuntu-22.04'
end

# Docker use image.
Expand All @@ -498,7 +498,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# This box is provided by Bento boxes via vagrantcloud.com and is a nicely sized
# box containing the Ubuntu 20.04 Focal 64 bit release. Once this box is downloaded
# to your host computer, it is cached for future use under the specified box name.
override.vm.box = 'bento/ubuntu-20.04'
override.vm.box = 'bento/ubuntu-22.04'

# If we're at a contributor day, switch the base box to the prebuilt one
if defined? vvv_config['vm_config']['wordcamp_contributor_day_box']
Expand Down
Loading