src: Increase num_render_targets to 32 for Chromium #69
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: ubuntu | |
on: [push, pull_request] | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
compiler: [clang-15, gcc] | |
os: [ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
env: | |
CC: ${{ matrix.compiler }} | |
DISTRO: ${{ matrix.os }} | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v4 | |
- name: 'Install toolchain' | |
if: ${{ (matrix.compiler == 'clang-15') }} | |
run: .github/workflows/install-clang.sh 15 | |
- name: 'Install prerequisites' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
libdrm-dev \ | |
libva-dev \ | |
libegl-dev \ | |
meson | |
- name: 'Configure' | |
run: meson setup ./builddir --prefix=/usr -D werror=true | |
- name: 'Build' | |
run: meson compile -C ./builddir | |
- name: 'Install' | |
run: sudo meson install -C ./builddir |