ci: fix by bumping Ubuntu to 24.04 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build-lil: | |
name: Build lil | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Install prerequisites | |
run: | | |
set -x | |
sudo apt-get update | |
sudo apt-get install gcc ninja-build | |
pip3 install meson --break-system-packages | |
- name: Checkout lil | |
uses: actions/checkout@v2 | |
- name: Prepare build | |
run: | | |
set -x | |
mkdir -p build build-util | |
meson setup --buildtype=debugoptimized --cross-file=.github/workflows/ci.cross-file build/ | |
meson setup --buildtype=debugoptimized --native-file=.github/workflows/ci.cross-file -Dbuild_utils=true build-util/ | |
- name: Build lil | |
run: | | |
set -x | |
ninja | |
working-directory: build/ | |
- name: Build lil-utils | |
run: | | |
set -x | |
ninja | |
working-directory: build-util/ |