mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 12:14:10 +08:00
0d0d245e7e
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com> Reviewed-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17879>
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
name: CI
|
|
on: push
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
CI:
|
|
runs-on: macos-latest
|
|
env:
|
|
GALLIUM_DUMP_CPU: true
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Install Dependencies
|
|
run: |
|
|
cat > Brewfile <<EOL
|
|
brew "bison"
|
|
brew "expat"
|
|
brew "gettext"
|
|
brew "libx11"
|
|
brew "libxcb"
|
|
brew "libxdamage"
|
|
brew "libxext"
|
|
brew "meson"
|
|
brew "pkg-config"
|
|
brew "python@3.10"
|
|
EOL
|
|
|
|
brew update
|
|
brew bundle --verbose
|
|
- name: Install Mako
|
|
run: pip3 install --user mako
|
|
- name: Configure
|
|
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
|
|
run: meson test -C build --print-errorlogs
|
|
- name: Install
|
|
run: meson install -C build
|
|
- name: 'Upload Artifact'
|
|
if: always()
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-result
|
|
path: build/meson-logs/testlog.txt
|
|
retention-days: 5
|