Skip to content

Commit

Permalink
Add workflow for ubuntu 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
windytan committed Jul 11, 2024
1 parent 12819d0 commit 433014d
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,28 @@ name: build

on:
push:
branches: [ master ]
branches: [ master, dev ]
tags: [ 'v*' ]
pull_request:
branches: [ master ]

jobs:
build-ubuntu:
runs-on: ubuntu-latest
build-ubuntu-22:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- name: Install dependencies (apt)
run: sudo apt install python3-pip ninja-build libsndfile1-dev libliquid-dev nlohmann-json3-dev
- name: Install meson (pip3)
run: pip3 install --user meson
- name: meson setup
run: meson setup -Dwerror=true build
- name: compile
run: cd build && meson compile

build-ubuntu-20:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 433014d

Please sign in to comment.