Skip to content

Commit

Permalink
ci: set gv-buffers to 1 in windows workflows
Browse files Browse the repository at this point in the history
This intends to avoids reaching the memory limit in CI windows nodes
  • Loading branch information
EmilioPeJu committed Jan 11, 2022
1 parent b5d6690 commit 3f5782d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aravis-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: meson
run: |
mkdir build
meson --buildtype=plain -Ddocumentation=disabled -Dgst-plugin=enabled -Dintrospection=enabled -Dusb=enabled -Dviewer=enabled . ./build
meson --buildtype=plain -Ddocumentation=disabled -Dgst-plugin=enabled -Dintrospection=enabled -Dusb=enabled -Dviewer=enabled -Dgv-buffers=1 . ./build
- name: ninja install
run: |
ninja -C ./build --verbose install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aravis-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
.\build\activate_build.ps1
.\build\activate_run.ps1
echo "::group::configure"
meson --prefix ${{ github.workspace }}\install --buildtype ${{ matrix.build_type_meson }} --pkg-config-path ${{ github.workspace }}\build -Ddocumentation=disabled -Dgst-plugin=enabled -Dintrospection=disabled -Dusb=enabled -Dviewer=disabled . .\build
meson --prefix ${{ github.workspace }}\install --buildtype ${{ matrix.build_type_meson }} --pkg-config-path ${{ github.workspace }}\build -Ddocumentation=disabled -Dgst-plugin=enabled -Dintrospection=disabled -Dusb=enabled -Dviewer=disabled -Dgv-buffers=1 . .\build
echo "::endgroup::"
echo "::group::compile"
meson compile -C .\build -v
Expand Down

0 comments on commit 3f5782d

Please sign in to comment.