diff options
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a172bea3e31..e0720f20ea8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,12 @@ jobs: - name: Install Mako run: pip3 install --user mako - name: Configure - run: meson . build -Dbuild-tests=true -Dosmesa=true + run: | + cat > native_config <<EOL + [binaries] + llvm-config = '/usr/local/opt/llvm/bin/llvm-config' + EOL + meson . build --native-file=native_config -Dbuild-tests=true -Dosmesa=true -Dgallium-drivers=swrast - name: Build run: meson compile -C build - name: Test |