Skip to content

Commit

Permalink
workflows added --clean-after-build for tinyorm
Browse files Browse the repository at this point in the history
To avoid high disk usage.
  • Loading branch information
silverqx committed Jun 25, 2024
1 parent 51a0e56 commit 44afa5d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-linux-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
run: >-
# Temporary GCC14 workaround
CFLAGS="-Wno-implicit-function-declaration -Wno-int-conversion"
vcpkg install ${{ matrix.qt.vcpkg-tinyorm-features }}
vcpkg install ${{ matrix.qt.vcpkg-tinyorm-features }} --clean-after-build
# Prepare TinyORM-HelloWorld-TinyDrivers project

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
- name: vcpkg install ${{ matrix.qt.vcpkg-tinyorm }} (classic mode)
if: matrix.build-type.key == 'debug'
run: |
vcpkg install ${{ matrix.qt.vcpkg-tinyorm-features }}
vcpkg install ${{ matrix.qt.vcpkg-tinyorm-features }} --clean-after-build
# Prepare TinyORM-HelloWorld project

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-windows-drivers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ jobs:
- name: vcpkg install ${{ matrix.qt.vcpkg-tinyorm }} (classic mode)
if: matrix.build-type.key == 'debug'
run: |
vcpkg.exe install ${{ matrix.qt.vcpkg-tinyorm-features }}
vcpkg.exe install ${{ matrix.qt.vcpkg-tinyorm-features }} --clean-after-build
# Prepare TinyORM-HelloWorld-TinyDrivers project

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
- name: vcpkg install ${{ matrix.qt.vcpkg-tinyorm }} (classic mode)
if: matrix.build-type.key == 'debug'
run: |
vcpkg.exe install ${{ matrix.qt.vcpkg-tinyorm-features }}
vcpkg.exe install ${{ matrix.qt.vcpkg-tinyorm-features }} --clean-after-build
# Prepare TinyORM-HelloWorld project

Expand Down

0 comments on commit 44afa5d

Please sign in to comment.