Skip to content

Commit

Permalink
ci: Add Ubuntu 20.04 job
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgesStavracas committed Nov 8, 2021
1 parent ef238a2 commit 35aca14
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -26,3 +26,20 @@ jobs:
run: meson setup --prefix=/usr _build -Dbackends=
- name: Build libportal
run: ninja -C_build

ubuntu-20-04:
name: Ubuntu 20.04
runs-on: ubuntu-20.04

steps:
- name: Install dependencies
run: |
add-apt-repository 'deb https://download.mono-project.com/repo/ubuntu stable-bionic main' # Needed for updates to work
apt-get update
apt-get install -y libglib2.0 gettext dbus gtk-doc-tools meson libgirepository1.0-dev
- name: Check out libportal
uses: actions/checkout@v1
- name: Configure libportal
run: meson setup --prefix=/usr _build -Dbackends=
- name: Build libportal
run: ninja -C_build

0 comments on commit 35aca14

Please sign in to comment.