Skip to content

Commit

Permalink
ci: include LLVM libraries in Mesa artifacts
Browse files Browse the repository at this point in the history
Change-Id: I9eb14ddada41a4fa328baf6dd18d2e0bd3b036bc
  • Loading branch information
kpet committed Nov 24, 2024
1 parent dac34f3 commit 1c378c2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build-mesa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,18 @@ jobs:
- name: Build
run: |
ninja -C mesa/build
- name: Prepare artifact
shell: bash
run: |
mkdir mesa-artifact
cd mesa-artifact
cp -rvf '${{ github.workspace }}'/mesa/build/src/gallium/targets/lavapipe/* .
if [ "$RUNNER_OS" != "Windows" ]; then
cp -vf /usr/local/lib/libLLVM* .
else
cp -vf 'C:/Program Files (x86)/LLVM/bin/LLVM-C.dll' .
fi
- uses: actions/upload-artifact@v4
with:
name: mesa-${{ runner.os }}
path: ${{ github.workspace }}/mesa/build/src/gallium/targets/lavapipe
path: ${{ github.workspace }}/mesa-artifact

0 comments on commit 1c378c2

Please sign in to comment.