mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 21:00:06 +00:00
travis: fix Transifex upload
This commit is contained in:
parent
575099fcfa
commit
9921286f3b
5 changed files with 31 additions and 21 deletions
26
.travis/transifex/docker.sh
Normal file
26
.travis/transifex/docker.sh
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
# Setup RC file for tx
|
||||
echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = api\npassword = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc
|
||||
|
||||
set -x
|
||||
|
||||
echo -e "\e[1m\e[33mInstalling dependencies...\e[0m"
|
||||
apk update
|
||||
apk add build-base sdl2-dev cmake python3-dev qt5-qttools-dev
|
||||
|
||||
pip3 install transifex-client
|
||||
|
||||
echo -e "\e[1m\e[33mBuild tools information:\e[0m"
|
||||
cmake --version
|
||||
gcc -v
|
||||
tx --version
|
||||
|
||||
cd /citra
|
||||
mkdir build && cd build
|
||||
cmake .. -DENABLE_QT_TRANSLATION=ON -DGENERATE_QT_TRANSLATION=ON -DCMAKE_BUILD_TYPE=Release
|
||||
make translation
|
||||
cd ..
|
||||
|
||||
cd dist/languages
|
||||
tx push -s
|
Loading…
Add table
Add a link
Reference in a new issue