cancel
Showing results for 
Search instead for 
Did you mean: 

ovr-platform-util on Linux

Timo_Alta
Explorer

Is there a linux version of the OVR Platform Utility Command Line Tool?

Or maybe source code so we can build it ourselves?

 

https://developer.oculus.com/resources/publish-reference-platform-command-line-utility/

 

This would be super useful to run the tool in a CI/CD context 

2 REPLIES 2

dan-gx
Explorer

+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
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"