We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8049c35 commit ddff046Copy full SHA for ddff046
.github/workflows/build.yml
@@ -96,13 +96,15 @@ jobs:
96
- id: checkout
97
uses: actions/checkout@v5
98
99
- - name: Meson Build
100
- uses: BSFishy/meson-build@v1.0.3
101
- with:
102
- action: build
103
- directory: output
104
- setup-options: -Ddocumentation=disabled -Dwrap_mode=forcefallback
105
- meson-version: 1.3.0
+ - name: Install dependencies
+ run: |
+ pip install meson ninja
+
+ - name: Configure
+ run: meson setup -Ddocumentation=disabled -wrap-mode forcefallback ${{ matrix.meson_options }} output
106
+ - name: Build
107
+ run: meson compile -C output --verbose
108
109
build-windows-msvc:
110
runs-on: windows-latest
0 commit comments