summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Kienapfel <Docteh@users.noreply.github.com>2022-07-23 10:09:59 -0700
committerKyle Kienapfel <Docteh@users.noreply.github.com>2022-07-23 10:09:59 -0700
commit5878eb34f493fba74727c610bbb8d86b81d68f02 (patch)
treeb60f81b49010a94c13cdd5e5b785bd6800b08801
parentda066e8ed8f5650a37990599c0b5a628d57335e8 (diff)
ci,transifex: enable vcpkg on transifex step
The slim docker container that runs transifex needs a few packages added in, curl zip unzip I've tested everything except actually pushing to transifex, but it's not November 2022 yet so we're fine for now. Or we're actually using the newer client and all is well.
-rwxr-xr-x.ci/scripts/transifex/docker.sh5
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
gcc -v
tx --version
+# vcpkg needs these: curl zip unzip tar, have tar
+apt-get install -y curl zip unzip
+
mkdir build && cd build
-cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_SDL2=OFF
+cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release -DENABLE_SDL2=OFF -DYUZU_TESTS=OFF -DYUZU_USE_BUNDLED_VCPKG=ON
make translation
cd ..