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 bc6ad55
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 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,11 +26,19 @@ jobs:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade meson
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 \
libwayland-dev wayland-protocols bison graphviz
doxygen libxcb-xkb-dev xvfb valgrind ninja-build \
libwayland-dev wayland-protocols bison graphviz \
meson
- name: Setup
run: |
meson setup build
Expand Down

0 comments on commit bc6ad55

Please sign in to comment.