diff options
| author | 2022-07-23 15:11:37 -0400 | |
|---|---|---|
| committer | 2022-07-23 15:11:37 -0400 | |
| commit | 6c4e48dac40d5a9b7b9a8077d14b814df6032fd4 (patch) | |
| tree | 2152e59fcad74d26d0ea2da5a829d3add77d22b0 | |
| parent | Merge pull request #8625 from Docteh/ado_titlebar (diff) | |
| parent | ci,transifex: enable vcpkg on transifex step (diff) | |
| download | yuzu-6c4e48dac40d5a9b7b9a8077d14b814df6032fd4.tar.gz yuzu-6c4e48dac40d5a9b7b9a8077d14b814df6032fd4.tar.xz yuzu-6c4e48dac40d5a9b7b9a8077d14b814df6032fd4.zip | |
Merge pull request #8629 from Docteh/test_transifex
ci,transifex: enable vcpkg on transifex step
Diffstat (limited to '')
| -rwxr-xr-x | .ci/scripts/transifex/docker.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.ci/scripts/transifex/docker.sh b/.ci/scripts/transifex/docker.sh index bafd326f9..05e1a98f5 100755 --- a/.ci/scripts/transifex/docker.sh +++ b/.ci/scripts/transifex/docker.sh | |||
| @@ -16,8 +16,11 @@ cmake --version | |||
| 16 | gcc -v | 16 | gcc -v |
| 17 | tx --version | 17 | tx --version |
| 18 | 18 | ||
| 19 | # vcpkg needs these: curl zip unzip tar, have tar | ||
| 20 | apt-get install -y curl zip unzip | ||
| 21 | |||
| 19 | mkdir build && cd build | 22 | mkdir build && cd build |
| 20 | cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_SDL2=OFF | 23 | cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_SDL2=OFF -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON |
| 21 | make translation | 24 | make translation |
| 22 | cd .. | 25 | cd .. |
| 23 | 26 | ||