Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨

2 Replies

  • +1 being able to run ovr-platform-util in our Linux-based Bitbucket Pipelines would do a lot to stabilize our CI/CD process.

    Currently we have to put up additional servers just to run ovr-platform-util.exe which is not great for the additional points of failure/admin overhead and scales poorly to more deployment environments.

  • brian's avatar
    brian
    Honored Guest

    Here's a one-liner to use docker/wine to run the ovr-platform-util exe to upload an apk you have in the same folder:

    1. Install Docker

    2. Put your apk and ovr-platform-util.exe in your current folder

    3. Run ovr-platform-util.exe in wine in a docker container (configure for your app and exe/apk path)

    docker run -t -v .:/files_to_use -w /workspace jmschrack/winehq:stable wine /files_to_use/ovr-platform-util.exe upload-quest-build --app_id YOUR_APP_ID --app_secret YOUR_APP_SECRET --apk /files_to_use/YOUR_LOCAL_FILENAME.apk --channel alpha --notes "This is an alpha build"