Skip to content

Commit

Permalink
Try to use Ubuntu 23.04
Browse files Browse the repository at this point in the history
  • Loading branch information
wismill committed Jun 19, 2023
1 parent 4121efd commit 7f0916c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions: {}

jobs:
linux:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
contents: read
strategy:
Expand All @@ -26,10 +26,18 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade meson
python -m pip install --upgrade meson PyYAML
sudo apt update
# Upgrade Ubuntu to Lunar
sudo sed -i s/Prompt=lts/Prompt=normal/ /etc/update-manager/release-upgrades
sudo apt install -y ubuntu-release-upgrader-core
sudo apt upgrade -y
sudo apt dist-upgrade -y
sudo do-release-upgrade --frontend DistUpgradeViewNonInteractive
sudo do-release-upgrade --frontend DistUpgradeViewNonInteractive
# End of upgrade
sudo apt install -y \
doxygen libxcb-xkb-dev valgrind ninja-build \
doxygen libxcb-xkb-dev xvfb valgrind ninja-build \
libwayland-dev wayland-protocols bison graphviz
- name: Setup
run: |
Expand Down

0 comments on commit 7f0916c

Please sign in to comment.